summaryrefslogtreecommitdiffstats
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
commit9af99f8c74b249b6f5cb4740ba7ba80dac1f40b5 (patch)
tree9bfebdeddc8c280054a84857392072412b85a43e
parent7f99b6f58c259583ca98583d381c4752048eb488 (diff)
downloadbcm5719-llvm-9af99f8c74b249b6f5cb4740ba7ba80dac1f40b5.tar.gz
bcm5719-llvm-9af99f8c74b249b6f5cb4740ba7ba80dac1f40b5.zip
Don't lose namespace qualifications on previous patch.
llvm-svn: 2664
-rw-r--r--llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h
index 29f872fe09c..5df4381e3ee 100644
--- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h
+++ b/llvm/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;
OpenPOWER on IntegriCloud