added std:: to vector
authorAnand Shukla <ashukla@cs.uiuc.edu>
Thu, 11 Jul 2002 00:16:28 +0000 (00:16 +0000)
committerAnand Shukla <ashukla@cs.uiuc.edu>
Thu, 11 Jul 2002 00:16:28 +0000 (00:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2874 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetRegInfo.h
lib/Target/SparcV9/SparcV9Internals.h

index 33bcf15e58f123fd2db008b66b052efbbcc190d5..7ec5ee26b0c33636648059c15f60ead0746ef621 100644 (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;
index c5047f96a570c441b5f4b2c12666aa39d18d96f7..92c938ece0b45b7d21f173d6071025796ca71c5a 100644 (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;
 };