aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h4
1 files changed, 2 insertions, 2 deletions
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;