mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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:
parent
b576beaaa8
commit
c6b8a99207
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user