mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
When updating live range endpoints, make sure to preserve the early clobber bit.
Fixs PR13719. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
84451a110d
commit
7b23d08385
@ -1173,7 +1173,7 @@ private:
|
||||
SlotIndex LastUse = findLastUseBefore(LI->reg, OldIdx);
|
||||
if (LastUse != NewIdx)
|
||||
moveKillFlags(LI->reg, NewIdx, LastUse);
|
||||
LR->end = LastUse.getRegSlot();
|
||||
LR->end = LastUse.getRegSlot(LR->end.isEarlyClobber());
|
||||
}
|
||||
|
||||
void moveEnteringDownFrom(SlotIndex OldIdx, IntRangePair& P) {
|
||||
@ -1187,7 +1187,7 @@ private:
|
||||
assert(LR->end > OldIdx && "LiveRange does not cover original slot");
|
||||
moveKillFlags(LI->reg, LR->end, NewIdx);
|
||||
}
|
||||
LR->end = NewIdx.getRegSlot();
|
||||
LR->end = NewIdx.getRegSlot(LR->end.isEarlyClobber());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user