mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-23 02:32:11 +00:00
Fix an obvious bug, noticed by inspection. No current targets trigger this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29648 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3bb4657488
commit
103de7785a
@ -103,9 +103,9 @@ bool PNE::EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB) {
|
||||
/// use of the specified register.
|
||||
static bool InstructionUsesRegister(MachineInstr *MI, unsigned SrcReg) {
|
||||
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
|
||||
if (MI->getOperand(0).isRegister() &&
|
||||
MI->getOperand(0).getReg() == SrcReg &&
|
||||
MI->getOperand(0).isUse())
|
||||
if (MI->getOperand(i).isRegister() &&
|
||||
MI->getOperand(i).getReg() == SrcReg &&
|
||||
MI->getOperand(i).isUse())
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user