Some fool committed without testing (or even building) first.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 30 Jun 2010 18:41:20 +0000 (18:41 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 30 Jun 2010 18:41:20 +0000 (18:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107307 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/Spiller.cpp

index 19987afef1e1a13e18a4ef77549af6ba5dde0cf3..b95f54bff967ea3b79c94090c6bd10421ecfd92c 100644 (file)
@@ -137,7 +137,7 @@ protected:
         MachineInstr *loadInstr(prior(miItr));
         SlotIndex loadIndex =
           lis->InsertMachineInstrInMaps(loadInstr).getDefIndex();
-        vrm->addSpilSlotUse(ss, loadInstr);
+        vrm->addSpillSlotUse(ss, loadInstr);
         SlotIndex endIndex = loadIndex.getNextIndex();
         VNInfo *loadVNI =
           newLI->getNextValue(loadIndex, 0, true, lis->getVNInfoAllocator());
@@ -151,7 +151,7 @@ protected:
         MachineInstr *storeInstr(llvm::next(miItr));
         SlotIndex storeIndex =
           lis->InsertMachineInstrInMaps(storeInstr).getDefIndex();
-        vrm->addSpilSlotUse(ss, storeInstr);
+        vrm->addSpillSlotUse(ss, storeInstr);
         SlotIndex beginIndex = storeIndex.getPrevIndex();
         VNInfo *storeVNI =
           newLI->getNextValue(beginIndex, 0, true, lis->getVNInfoAllocator());