mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-28 07:17:32 +00:00
X86 should ignore implicit regs when lowering to MCInst also,
no functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84567 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -306,6 +306,8 @@ void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
|
|||||||
MI->dump();
|
MI->dump();
|
||||||
llvm_unreachable("unknown operand type");
|
llvm_unreachable("unknown operand type");
|
||||||
case MachineOperand::MO_Register:
|
case MachineOperand::MO_Register:
|
||||||
|
// Ignore all implicit register operands.
|
||||||
|
if (MO.isImplicit()) continue;
|
||||||
MCOp = MCOperand::CreateReg(MO.getReg());
|
MCOp = MCOperand::CreateReg(MO.getReg());
|
||||||
break;
|
break;
|
||||||
case MachineOperand::MO_Immediate:
|
case MachineOperand::MO_Immediate:
|
||||||
|
Reference in New Issue
Block a user