mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
Minor bug fix in printing operands of JMPL.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@926 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f434cd1b30
commit
43534443ff
@ -166,9 +166,9 @@ void SparcAsmPrinter::emitMachineInst(const MachineInstr *MI) {
|
||||
assert(MI->getNumOperands() == 3 && "Unexpected JMPL instr!");
|
||||
printOperand(MI->getOperand(0));
|
||||
Out << "+";
|
||||
printOperand(MI->getOperand(0));
|
||||
printOperand(MI->getOperand(1));
|
||||
Out << ", ";
|
||||
printOperand(MI->getOperand(0));
|
||||
printOperand(MI->getOperand(2));
|
||||
Out << endl;
|
||||
return;
|
||||
default: break;
|
||||
|
Loading…
Reference in New Issue
Block a user