diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-02 21:40:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-02 21:40:46 +0000 |
commit | a5855c829b4bf3cd5acf8a605a6d54e266211554 (patch) | |
tree | 161f0cbd14c0dc522ee588c996cbc26fa38fad52 | |
parent | 40ead9592888c345d6514dff427ae67dfcf23805 (diff) |
Remove comment
Remove handling of OtherFrm
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4867 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/Printer.cpp | 7 | ||||
-rw-r--r-- | lib/Target/X86/X86AsmPrinter.cpp | 7 |
2 files changed, 0 insertions, 14 deletions
diff --git a/lib/Target/X86/Printer.cpp b/lib/Target/X86/Printer.cpp index 4a39c2e322..3edb8d47ba 100644 --- a/lib/Target/X86/Printer.cpp +++ b/lib/Target/X86/Printer.cpp @@ -42,8 +42,6 @@ bool Printer::runOnFunction (Function & F) 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 @@ void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O, 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 diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp index 4a39c2e322..3edb8d47ba 100644 --- a/lib/Target/X86/X86AsmPrinter.cpp +++ b/lib/Target/X86/X86AsmPrinter.cpp @@ -42,8 +42,6 @@ bool Printer::runOnFunction (Function & F) 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 @@ void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O, 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 |