mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
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:
parent
84d499a698
commit
2aaa98da76
@ -266,13 +266,11 @@ void XCoreAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||
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
Block a user