1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

t2MOVi32imm is currently always lowered by the Thumb2ITBlockPass.

llvm-svn: 84611
This commit is contained in:
Chris Lattner 2009-10-20 05:58:02 +00:00
parent 0d83671555
commit dfe75a5667

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;