diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-20 17:38:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-20 17:38:26 +0000 |
commit | 5245f853c54e422b3004d5f80d2aaaebbceb8468 (patch) | |
tree | 9c6ed2f1da9d9aabd62c8b200e437205f9e3a824 /lib | |
parent | 36346c7a1e21b268e5e68cd07e5761055269851c (diff) | |
download | external_llvm-5245f853c54e422b3004d5f80d2aaaebbceb8468.zip external_llvm-5245f853c54e422b3004d5f80d2aaaebbceb8468.tar.gz external_llvm-5245f853c54e422b3004d5f80d2aaaebbceb8468.tar.bz2 |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/RegAlloc/PhyRegAlloc.h | 4 | ||||
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 29f872f..5df4381 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -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; diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index 29f872f..5df4381 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -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; |