mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 00:25:01 +00:00
Minor bug fix in printing operands of JMPL.
llvm-svn: 926
This commit is contained in:
parent
65647505e2
commit
e98e4a0526
@ -166,9 +166,9 @@ void SparcAsmPrinter::emitMachineInst(const MachineInstr *MI) {
|
|||||||
assert(MI->getNumOperands() == 3 && "Unexpected JMPL instr!");
|
assert(MI->getNumOperands() == 3 && "Unexpected JMPL instr!");
|
||||||
printOperand(MI->getOperand(0));
|
printOperand(MI->getOperand(0));
|
||||||
Out << "+";
|
Out << "+";
|
||||||
printOperand(MI->getOperand(0));
|
printOperand(MI->getOperand(1));
|
||||||
Out << ", ";
|
Out << ", ";
|
||||||
printOperand(MI->getOperand(0));
|
printOperand(MI->getOperand(2));
|
||||||
Out << endl;
|
Out << endl;
|
||||||
return;
|
return;
|
||||||
default: break;
|
default: break;
|
||||||
|
Loading…
Reference in New Issue
Block a user