mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Fix small bug in isMoveInstr -> COPY translation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108013 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1f32340d95
commit
8ea324093c
@ -192,9 +192,10 @@ bool LiveIntervals::conflictsWithPhysReg(const LiveInterval &li,
|
||||
if (tii_->isMoveInstr(MI, SrcReg, DstReg, SrcSubReg, DstSubReg))
|
||||
if (SrcReg == li.reg || DstReg == li.reg)
|
||||
continue;
|
||||
if (MI.isCopy() && MI.getOperand(0).getReg() == li.reg &&
|
||||
MI.getOperand(1).getReg() == li.reg)
|
||||
continue;
|
||||
if (MI.isCopy())
|
||||
if (MI.getOperand(0).getReg() == li.reg ||
|
||||
MI.getOperand(1).getReg() == li.reg)
|
||||
continue;
|
||||
|
||||
// Check for operands using reg
|
||||
for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user