diff options
-rw-r--r-- | lib/Target/X86/Printer.cpp | 3 | ||||
-rw-r--r-- | lib/Target/X86/X86AsmPrinter.cpp | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lib/Target/X86/Printer.cpp b/lib/Target/X86/Printer.cpp index 0ff14f577d..7a3e9b1a70 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 0ff14f577d..7a3e9b1a70 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; } |