Oops. Debugging code shouldn't have been checked in.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 14 Nov 2007 19:08:32 +0000 (19:08 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 14 Nov 2007 19:08:32 +0000 (19:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44128 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ATTAsmPrinter.cpp

index 44040977fed7e0eb16126f9b0f1f8c81f8801dee..5575ee7795afc23c78b1155f62ce195e14cf808b 100644 (file)
@@ -643,15 +643,6 @@ void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
   case X86::PsMOVZX64rr32:
     O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
     break;
-  case X86::MOV8mr: {
-    const MachineOperand &MO = MI->getOperand(4);
-    switch (MO.getReg()) {
-      default: abort();
-      case X86::AH: case X86::DH: case X86::CH: case X86::BH:
-      case X86::AL: case X86::DL: case X86::CL: case X86::BL:
-        break;
-    }
-  }
   }
 
   // Call the autogenerated instruction printer routines.