Oops. Debugging code shouldn't have been checked in.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44128 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2007-11-14 19:08:32 +00:00
parent 233b60eced
commit e40740bd8c

View 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.