summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-06-30 18:41:20 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-06-30 18:41:20 +0000
commit59e1cae377a2b1d17eb0e9c5c82fcbd19865a8be (patch)
treebcde2e80902615893c72c09a36cd9315d30b2582 /llvm/lib/CodeGen
parentcbcebe29500b19392dda456c2d2e9a06a5b100df (diff)
downloadbcm5719-llvm-59e1cae377a2b1d17eb0e9c5c82fcbd19865a8be.tar.gz
bcm5719-llvm-59e1cae377a2b1d17eb0e9c5c82fcbd19865a8be.zip
Some fool committed without testing (or even building) first.
llvm-svn: 107307
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/Spiller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/Spiller.cpp b/llvm/lib/CodeGen/Spiller.cpp
index 19987afef1e..b95f54bff96 100644
--- a/llvm/lib/CodeGen/Spiller.cpp
+++ b/llvm/lib/CodeGen/Spiller.cpp
@@ -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());
OpenPOWER on IntegriCloud