diff options
| author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-03-09 06:10:15 +0000 |
|---|---|---|
| committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-03-09 06:10:15 +0000 |
| commit | f234284986582bbb1dc78f15d3a1692db7e096d8 (patch) | |
| tree | 2e3d133e09f40b453898418f9ae8b84db25942b7 /llvm | |
| parent | 75a2efdd6cdaa1c7f9a1f24e01b62aa40259f419 (diff) | |
| download | bcm5719-llvm-f234284986582bbb1dc78f15d3a1692db7e096d8.tar.gz bcm5719-llvm-f234284986582bbb1dc78f15d3a1692db7e096d8.zip | |
Check if printing of implicit uses is required for all types of shift
instructions.
llvm-svn: 12258
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/Printer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/Printer.cpp b/llvm/lib/Target/X86/Printer.cpp index 0ff14f577dd..7a3e9b1a70e 100644 --- a/llvm/lib/Target/X86/Printer.cpp +++ b/llvm/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; } |

