From: Anand Shukla Date: Thu, 11 Jul 2002 00:16:28 +0000 (+0000) Subject: added std:: to vector X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=24787fa2ed43dc58813b14ac18fbc402a7315062;hp=4c7b04508ef0069cbd0935aab5d69272a8675cc8;p=oota-llvm.git added std:: to vector git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2874 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetRegInfo.h b/include/llvm/Target/TargetRegInfo.h index 33bcf15e58f..7ec5ee26b0c 100644 --- a/include/llvm/Target/TargetRegInfo.h +++ b/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& instrnsBefore, - vector& instrnsAfter, + virtual void insertCallerSavingCode(std::vector& instrnsBefore, + std::vector& instrnsAfter, MachineInstr *MInst, const BasicBlock *BB, PhyRegAlloc &PRA) const = 0; diff --git a/lib/Target/SparcV9/SparcV9Internals.h b/lib/Target/SparcV9/SparcV9Internals.h index c5047f96a57..92c938ece0b 100644 --- a/lib/Target/SparcV9/SparcV9Internals.h +++ b/lib/Target/SparcV9/SparcV9Internals.h @@ -485,8 +485,8 @@ public: // This method inserts the caller saving code for call instructions // - void insertCallerSavingCode(vector& instrnsBefore, - vector& instrnsAfter, + void insertCallerSavingCode(std::vector& instrnsBefore, + std::vector& instrnsAfter, MachineInstr *MInst, const BasicBlock *BB, PhyRegAlloc &PRA ) const; };