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 | 9af99f8c74b249b6f5cb4740ba7ba80dac1f40b5 (patch) | |
| tree | 9bfebdeddc8c280054a84857392072412b85a43e | |
| parent | 7f99b6f58c259583ca98583d381c4752048eb488 (diff) | |
| download | bcm5719-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.h | 4 |
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; |

