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:
Chris Lattner 2002-05-20 17:38:26 +00:00
parent 36346c7a1e
commit 5245f853c5
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;