Check if printing of implicit uses is required for all types of shift
instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12258 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/Printer.cpp b/lib/Target/X86/Printer.cpp
index 0ff14f5..7a3e9b1 100644
--- a/lib/Target/X86/Printer.cpp
+++ b/lib/Target/X86/Printer.cpp
@@ -668,6 +668,7 @@
O << ", ";
printOp(MI->getOperand(2));
}
+ checkImplUses(Desc);
O << "\n";
return;
}
@@ -689,6 +690,7 @@
O << ", ";
printOp(MI->getOperand(5));
}
+ checkImplUses(Desc);
O << "\n";
return;
}
@@ -839,6 +841,7 @@
O << ", ";
printOp(MI->getOperand(4));
}
+ checkImplUses(Desc);
O << "\n";
return;
}