diff options
author | Lang Hames <lhames@gmail.com> | 2009-09-12 03:34:03 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2009-09-12 03:34:03 +0000 |
commit | dad2da59add4363a10c8757a7e59f81fd10e35e0 (patch) | |
tree | cdd7d3eef8d0b121a0ec6b56e44adc7ce0829210 /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 307408d2af9d76513d927e24a456b8e57405b1e2 (diff) | |
download | bcm5719-llvm-dad2da59add4363a10c8757a7e59f81fd10e35e0.tar.gz bcm5719-llvm-dad2da59add4363a10c8757a7e59f81fd10e35e0.zip |
Moved some more index operations over to LiveIntervals.
llvm-svn: 81605
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 4eb3eab5399..38b94013792 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/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. |