summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Spiller.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2009-10-03 04:31:31 +0000
committerLang Hames <lhames@gmail.com>2009-10-03 04:31:31 +0000
commit6cc91e39c04c0c00756e7667f623f787c4851439 (patch)
tree5d92eb0738ad4f7309c74ad7ef32e2f0800efb16 /lib/CodeGen/Spiller.cpp
parentcc3b0650f1feec45d1a2890b20c05c4b325f1788 (diff)
downloadllvm-6cc91e39c04c0c00756e7667f623f787c4851439.tar.gz
llvm-6cc91e39c04c0c00756e7667f623f787c4851439.tar.bz2
llvm-6cc91e39c04c0c00756e7667f623f787c4851439.tar.xz
Oops. Renamed remaining MachineInstrIndex references.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Spiller.cpp')
-rw-r--r--lib/CodeGen/Spiller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/Spiller.cpp b/lib/CodeGen/Spiller.cpp
index 7e6f187897..0277d64cdd 100644
--- a/lib/CodeGen/Spiller.cpp
+++ b/lib/CodeGen/Spiller.cpp
@@ -321,7 +321,7 @@ public:
vrm->assignVirt2StackSlot(li->reg, ss);
MachineInstr *mi = 0;
- LiveIndex storeIdx = MachineInstrIndex();
+ LiveIndex storeIdx = LiveIndex();
if (valno->isDefAccurate()) {
// If we have an accurate def we can just grab an iterator to the instr
@@ -335,7 +335,7 @@ public:
}
MachineBasicBlock *defBlock = mi->getParent();
- LiveIndex loadIdx = MachineInstrIndex();
+ LiveIndex loadIdx = LiveIndex();
// Now we need to find the load...
MachineBasicBlock::iterator useItr(mi);