t2MOVi32imm is currently always lowered by the Thumb2ITBlockPass.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84611 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-10-20 05:58:02 +00:00
parent b576beaaa8
commit c6b8a99207

View File

@ -1306,6 +1306,8 @@ void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
void ARMAsmPrinter::printInstructionThroughMCStreamer(const MachineInstr *MI) {
ARMMCInstLower MCInstLowering(OutContext, *Mang, *this);
switch (MI->getOpcode()) {
case ARM::t2MOVi32imm:
assert(0 && "Should be lowered by thumb2it pass");
default: break;
case TargetInstrInfo::DBG_LABEL:
case TargetInstrInfo::EH_LABEL:
@ -1441,8 +1443,6 @@ void ARMAsmPrinter::printInstructionThroughMCStreamer(const MachineInstr *MI) {
return;
}
// FIXME: Handle t2MOVi32imm also.
}
MCInst TmpInst;