1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Kill info update bug.

llvm-svn: 44427
This commit is contained in:
Evan Cheng 2007-11-29 01:05:47 +00:00
parent 79cd8c14c5
commit c7959fd80b

View File

@ -206,6 +206,9 @@ LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
// endpoint as well.
if (End > it->end)
extendIntervalEndTo(it, End);
else
// Overlapping intervals, there might have been a kill here.
removeKill(it->valno, End);
return it;
}
} else {