forked from OSchip/llvm-project
Avoid isMoveInstr when printing XCore pseudo-moves.
llvm-svn: 108566
This commit is contained in:
parent
2c130b8ead
commit
8e767bde16
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue