aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-20 17:38:26 +0000
committerChris Lattner <sabre@nondot.org>2002-05-20 17:38:26 +0000
commit5245f853c54e422b3004d5f80d2aaaebbceb8468 (patch)
tree9c6ed2f1da9d9aabd62c8b200e437205f9e3a824 /lib
parent36346c7a1e21b268e5e68cd07e5761055269851c (diff)
downloadexternal_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.h4
-rw-r--r--lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h4
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;