mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-02 10:33:53 +00:00
Reuse extends the liveness of a register. Transfer the kill to the operand that reuse it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34536 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1da20a71d1
commit
50d25d7ff7
@ -665,8 +665,13 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM) {
|
||||
// Extend the live range of the MI that last kill the register if
|
||||
// necessary.
|
||||
MachineOperand *MOK = SSMI->findRegisterUseOperand(PhysReg, true);
|
||||
if (MOK)
|
||||
if (MOK) {
|
||||
MOK->unsetIsKill();
|
||||
if (ti == -1)
|
||||
// Unless it's the use of a two-address code, transfer the kill
|
||||
// of the reused register to this use.
|
||||
MI.getOperand(i).setIsKill();
|
||||
}
|
||||
|
||||
// The only technical detail we have is that we don't know that
|
||||
// PhysReg won't be clobbered by a reloaded stack slot that occurs
|
||||
|
Loading…
x
Reference in New Issue
Block a user