diff --git a/lib/Target/X86/Printer.cpp b/lib/Target/X86/Printer.cpp index 0ff14f577dd..7a3e9b1a70e 100644 --- a/lib/Target/X86/Printer.cpp +++ b/lib/Target/X86/Printer.cpp @@ -668,6 +668,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) { O << ", "; printOp(MI->getOperand(2)); } + checkImplUses(Desc); O << "\n"; return; } @@ -689,6 +690,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) { O << ", "; printOp(MI->getOperand(5)); } + checkImplUses(Desc); O << "\n"; return; } @@ -839,6 +841,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) { O << ", "; printOp(MI->getOperand(4)); } + checkImplUses(Desc); O << "\n"; return; } diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp index 0ff14f577dd..7a3e9b1a70e 100644 --- a/lib/Target/X86/X86AsmPrinter.cpp +++ b/lib/Target/X86/X86AsmPrinter.cpp @@ -668,6 +668,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) { O << ", "; printOp(MI->getOperand(2)); } + checkImplUses(Desc); O << "\n"; return; } @@ -689,6 +690,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) { O << ", "; printOp(MI->getOperand(5)); } + checkImplUses(Desc); O << "\n"; return; } @@ -839,6 +841,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) { O << ", "; printOp(MI->getOperand(4)); } + checkImplUses(Desc); O << "\n"; return; }