[llvm-commits] CVS: llvm/lib/Target/X86/Printer.cpp

Alkis Evlogimenos alkis at cs.uiuc.edu
Tue Mar 9 00:11:01 PST 2004


Changes in directory llvm/lib/Target/X86:

Printer.cpp updated: 1.92 -> 1.93

---
Log message:

Check if printing of implicit uses is required for all types of shift
instructions.


---
Diffs of the changes:  (+3 -0)

Index: llvm/lib/Target/X86/Printer.cpp
diff -u llvm/lib/Target/X86/Printer.cpp:1.92 llvm/lib/Target/X86/Printer.cpp:1.93
--- llvm/lib/Target/X86/Printer.cpp:1.92	Mon Mar  8 21:35:34 2004
+++ llvm/lib/Target/X86/Printer.cpp	Tue Mar  9 00:10:15 2004
@@ -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;
   }





More information about the llvm-commits mailing list