summaryrefslogtreecommitdiff
path: root/lib/CodeGen
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/CodeGen
parent36346c7a1e21b268e5e68cd07e5761055269851c (diff)
downloadllvm-5245f853c54e422b3004d5f80d2aaaebbceb8468.tar.gz
llvm-5245f853c54e422b3004d5f80d2aaaebbceb8468.tar.bz2
llvm-5245f853c54e422b3004d5f80d2aaaebbceb8468.tar.xz
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/CodeGen')
-rw-r--r--lib/CodeGen/RegAlloc/PhyRegAlloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h
index 29f872fe09..5df4381e3e 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;