added std:: to vector

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2874 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anand Shukla
2002-07-11 00:16:28 +00:00
parent 4c7b04508e
commit 24787fa2ed
2 changed files with 4 additions and 4 deletions

View File

@@ -220,8 +220,8 @@ public:
// an architecture. This must insert code for saving and restoring // an architecture. This must insert code for saving and restoring
// such registers on // such registers on
// //
virtual void insertCallerSavingCode(vector<MachineInstr*>& instrnsBefore, virtual void insertCallerSavingCode(std::vector<MachineInstr*>& instrnsBefore,
vector<MachineInstr*>& instrnsAfter, std::vector<MachineInstr*>& instrnsAfter,
MachineInstr *MInst, MachineInstr *MInst,
const BasicBlock *BB, const BasicBlock *BB,
PhyRegAlloc &PRA) const = 0; PhyRegAlloc &PRA) const = 0;

View File

@@ -485,8 +485,8 @@ public:
// This method inserts the caller saving code for call instructions // This method inserts the caller saving code for call instructions
// //
void insertCallerSavingCode(vector<MachineInstr*>& instrnsBefore, void insertCallerSavingCode(std::vector<MachineInstr*>& instrnsBefore,
vector<MachineInstr*>& instrnsAfter, std::vector<MachineInstr*>& instrnsAfter,
MachineInstr *MInst, MachineInstr *MInst,
const BasicBlock *BB, PhyRegAlloc &PRA ) const; const BasicBlock *BB, PhyRegAlloc &PRA ) const;
}; };