* ValueSet interface converted from add/remove to insert/erase
authorChris Lattner <sabre@nondot.org>
Mon, 4 Feb 2002 16:37:09 +0000 (16:37 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 4 Feb 2002 16:37:09 +0000 (16:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1690 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SparcV9/SparcV9RegInfo.cpp

index a528119560292405f5d767abc8a790035a0863bf..f35af9e573a6723c12de493a8d31d1f9c9ba62de 100644 (file)
@@ -302,7 +302,7 @@ void UltraSparcRegInfo::suggestReg4CallAddr(const MachineInstr * CallMI,
   // create a new LR for the return address and color it
   
   LiveRange * RetAddrLR = new LiveRange();  
-  RetAddrLR->add( RetAddrVal );
+  RetAddrLR->insert( RetAddrVal );
   unsigned RegClassID = getRegClassIDOfValue( RetAddrVal );
   RetAddrLR->setRegClass( RCList[RegClassID] );
   RetAddrLR->setColor(getUnifiedRegNum(IntRegClassID,SparcIntRegOrder::o7));
@@ -532,7 +532,7 @@ void UltraSparcRegInfo::suggestRegs4CallArgs(const MachineInstr *CallMI,
 
     // create a new LR for the return value
     LiveRange *RetValLR = new LiveRange();  
-    RetValLR->add(RetVal);
+    RetValLR->insert(RetVal);
     unsigned RegClassID = getRegClassIDOfValue(RetVal);
     RetValLR->setRegClass(RCList[RegClassID]);
     LRI.addLRToMap(RetVal, RetValLR);