mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-27 05:32:22 +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 {
|
||||
vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
||||
vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
||||
std::vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
||||
std::vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
||||
};
|
||||
|
||||
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
||||
|
@ -51,8 +51,8 @@ class LoopInfo;
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
struct AddedInstrns {
|
||||
vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
||||
vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
||||
std::vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
||||
std::vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
||||
};
|
||||
|
||||
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
||||
|
Loading…
x
Reference in New Issue
Block a user