1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

added std:: to vector

llvm-svn: 2874
This commit is contained in:
Anand Shukla 2002-07-11 00:16:28 +00:00
parent 58fce6cc00
commit 3d7a9691cc
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
// such registers on
//
virtual void insertCallerSavingCode(vector<MachineInstr*>& instrnsBefore,
vector<MachineInstr*>& instrnsAfter,
virtual void insertCallerSavingCode(std::vector<MachineInstr*>& instrnsBefore,
std::vector<MachineInstr*>& instrnsAfter,
MachineInstr *MInst,
const BasicBlock *BB,
PhyRegAlloc &PRA) const = 0;

View File

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