mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Don't lose namespace qualifications on previous patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2664 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
36346c7a1e
commit
5245f853c5
@ -51,8 +51,8 @@ class LoopInfo;
|
|||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
|
||||||
struct AddedInstrns {
|
struct AddedInstrns {
|
||||||
vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
std::vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
||||||
vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
std::vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
||||||
|
@ -51,8 +51,8 @@ class LoopInfo;
|
|||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
|
||||||
struct AddedInstrns {
|
struct AddedInstrns {
|
||||||
vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
std::vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
||||||
vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
std::vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
||||||
|
Loading…
Reference in New Issue
Block a user