mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
Pretty print 'rldicr r2, r2, 2, 61' as 'sldi r2, r2, 2'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
54e853b8a6
commit
566c1b1a04
@ -438,6 +438,18 @@ void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
} else if (MI->getOpcode() == PPC::RLDICR) {
|
||||
unsigned char SH = MI->getOperand(2).getImmedValue();
|
||||
unsigned char ME = MI->getOperand(3).getImmedValue();
|
||||
// rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
|
||||
if (63-SH == ME) {
|
||||
O << "sldi ";
|
||||
printOperand(MI, 0);
|
||||
O << ", ";
|
||||
printOperand(MI, 1);
|
||||
O << ", " << (unsigned int)SH << "\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (printInstruction(MI))
|
||||
|
Loading…
x
Reference in New Issue
Block a user