mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Avoid creating %physreg:subidx operands in SimpleRegisterCoalescing::RemoveCopyByCommutingDef.
This fixes PR7602. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107957 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
846a31881f
commit
8154f96f44
@ -460,7 +460,10 @@ bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(const CoalescerPair &CP,
|
||||
LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
|
||||
if (ULR == IntA.end() || ULR->valno != AValNo)
|
||||
continue;
|
||||
UseMO.setReg(NewReg);
|
||||
if (TargetRegisterInfo::isPhysicalRegister(NewReg))
|
||||
UseMO.substPhysReg(NewReg, *tri_);
|
||||
else
|
||||
UseMO.setReg(NewReg);
|
||||
if (UseMI == CopyMI)
|
||||
continue;
|
||||
if (UseMO.isKill()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user