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

Chris Lattner lattner at cs.uiuc.edu
Mon Dec 2 15:42:02 PST 2002


Changes in directory llvm/lib/Target/X86:

Printer.cpp updated: 1.18 -> 1.19

---
Log message:

Remove comment
Remove handling of OtherFrm


---
Diffs of the changes:

Index: llvm/lib/Target/X86/Printer.cpp
diff -u llvm/lib/Target/X86/Printer.cpp:1.18 llvm/lib/Target/X86/Printer.cpp:1.19
--- llvm/lib/Target/X86/Printer.cpp:1.18	Sun Dec  1 17:25:59 2002
+++ llvm/lib/Target/X86/Printer.cpp	Mon Dec  2 15:40:46 2002
@@ -42,8 +42,6 @@
   MachineFunction & MF = MachineFunction::get (&F);
   const MachineInstrInfo & MII = TM.getInstrInfo ();
 
-  O << "; x86 printing only sorta implemented so far!\n";
-
   // Print out labels for the function.
   O << "\t.globl\t" << F.getName () << "\n";
   O << "\t.type\t" << F.getName () << ", @function\n";
@@ -306,11 +304,6 @@
   if (Desc.TSFlags & X86II::TB) O << "0F ";     // Two-byte opcode prefix
 
   switch (Desc.TSFlags & X86II::FormMask) {
-  case X86II::OtherFrm:
-    O << "\t\t\t";
-    O << "-"; MI->print(O, TM);
-    break;
-
   case X86II::RawFrm:
     // The accepted forms of Raw instructions are:
     //   1. nop     - No operand required





More information about the llvm-commits mailing list