Don't lose namespace qualifications on previous patch.
authorChris Lattner <sabre@nondot.org>
Mon, 20 May 2002 17:38:26 +0000 (17:38 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 20 May 2002 17:38:26 +0000 (17:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2664 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/RegAlloc/PhyRegAlloc.h
lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h

index 29f872fe09ca62e75e3ec7641bf04f6cb386881a..5df4381e3ee5ecf7010a0d56722d4a0b12e1414a 100644 (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;
index 29f872fe09ca62e75e3ec7641bf04f6cb386881a..5df4381e3ee5ecf7010a0d56722d4a0b12e1414a 100644 (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;