diff options
-rw-r--r-- | llvm/include/llvm/Target/TargetRegInfo.h | 4 | ||||
-rw-r--r-- | llvm/lib/Target/Sparc/SparcInternals.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/Target/TargetRegInfo.h b/llvm/include/llvm/Target/TargetRegInfo.h index 33bcf15e58f..7ec5ee26b0c 100644 --- a/llvm/include/llvm/Target/TargetRegInfo.h +++ b/llvm/include/llvm/Target/TargetRegInfo.h @@ -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; diff --git a/llvm/lib/Target/Sparc/SparcInternals.h b/llvm/lib/Target/Sparc/SparcInternals.h index c5047f96a57..92c938ece0b 100644 --- a/llvm/lib/Target/Sparc/SparcInternals.h +++ b/llvm/lib/Target/Sparc/SparcInternals.h @@ -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; }; |