mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
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:
parent
4c7b04508e
commit
24787fa2ed
@ -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;
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user