Avoid isMoveInstr when printing XCore pseudo-moves.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108566 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jakob Stoklund Olesen 2010-07-16 22:35:37 +00:00
parent 84d499a698
commit 2aaa98da76

View File

@ -264,15 +264,13 @@ bool XCoreAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
void XCoreAsmPrinter::EmitInstruction(const MachineInstr *MI) {
SmallString<128> Str;
raw_svector_ostream O(Str);
// Check for mov mnemonic
unsigned src, dst, srcSR, dstSR;
if (TM.getInstrInfo()->isMoveInstr(*MI, src, dst, srcSR, dstSR)) {
O << "\tmov " << getRegisterName(dst) << ", ";
O << getRegisterName(src);
} else {
if (MI->getOpcode() == XCore::ADD_2rus && !MI->getOperand(2).getImm())
O << "\tmov " << getRegisterName(MI->getOperand(0).getReg()) << ", "
<< getRegisterName(MI->getOperand(1).getReg());
else
printInstruction(MI, O);
}
OutStreamer.EmitRawText(O.str());
}