mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 00:33:15 +00:00
Bad choice of variable name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42821 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5edc57fa42
commit
be8db245f5
@ -861,8 +861,8 @@ void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
|
|||||||
unsigned SrcReg, DstReg;
|
unsigned SrcReg, DstReg;
|
||||||
if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg)) continue;
|
if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg)) continue;
|
||||||
|
|
||||||
bool Success = JoinCopy(Inst, SrcReg, DstReg, PhysOnly);
|
bool Done = JoinCopy(Inst, SrcReg, DstReg, PhysOnly);
|
||||||
if (TryAgain && !Success)
|
if (TryAgain && !Done)
|
||||||
TryAgain->push_back(getCopyRec(Inst, SrcReg, DstReg));
|
TryAgain->push_back(getCopyRec(Inst, SrcReg, DstReg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user