mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
During two-address lowering, rescheduling an instruction does not untie
operands. Make TryInstructionTransform return false to reflect this. Fixes PR11861. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153892 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1248,7 +1248,7 @@ TryInstructionTransform(MachineBasicBlock::iterator &mi,
|
||||
// re-schedule this MI below it.
|
||||
if (RescheduleMIBelowKill(mbbi, mi, nmi, regB)) {
|
||||
++NumReSchedDowns;
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (TargetRegisterInfo::isVirtualRegister(regA))
|
||||
@ -1270,7 +1270,7 @@ TryInstructionTransform(MachineBasicBlock::iterator &mi,
|
||||
// re-schedule it before this MI if it's legal.
|
||||
if (RescheduleKillAboveMI(mbbi, mi, nmi, regB)) {
|
||||
++NumReSchedUps;
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
// If this is an instruction with a load folded into it, try unfolding
|
||||
|
Reference in New Issue
Block a user