aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2009-09-12 03:34:03 +0000
committerLang Hames <lhames@gmail.com>2009-09-12 03:34:03 +0000
commit35f291d2c5f80e8e713704190230064311bbbbbe (patch)
tree69620cc7fbeb013f5a0e48f8d8c5f74857dce068 /lib/CodeGen/LiveInterval.cpp
parent2a46f3678e9fea3cf25b08eb6fe5d9be6b24d2c7 (diff)
downloadexternal_llvm-35f291d2c5f80e8e713704190230064311bbbbbe.zip
external_llvm-35f291d2c5f80e8e713704190230064311bbbbbe.tar.gz
external_llvm-35f291d2c5f80e8e713704190230064311bbbbbe.tar.bz2
Moved some more index operations over to LiveIntervals.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81605 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 4eb3eab..38b9401 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -167,7 +167,7 @@ void LiveInterval::extendIntervalEndTo(Ranges::iterator I, MachineInstrIndex New
ranges.erase(next(I), MergeTo);
// Update kill info.
- ValNo->removeKills(OldEnd, I->end.prevSlot());
+ ValNo->removeKills(OldEnd, I->end.prevSlot_());
// If the newly formed range now touches the range after it and if they have
// the same value number, merge the two ranges into one range.