mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +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:
@@ -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;
|
||||||
|
@@ -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;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user