mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Fix bug in printing loads.
llvm-svn: 12741
This commit is contained in:
parent
be45dbdaf8
commit
90c53bcbda
@ -467,12 +467,12 @@ void V8Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << Desc.Name << " ";
|
||||
|
||||
// Printing memory instructions is a special case.
|
||||
// for loads: op %base, offset, %dest --> op [%base + offset], %dest
|
||||
// for stores: op %src, %base, offset --> op %src, [%base + offset]
|
||||
// for loads: %dest = op %base, offset --> op [%base + offset], %dest
|
||||
// for stores: op %src, %base, offset --> op %src, [%base + offset]
|
||||
if (isLoadInstruction (MI)) {
|
||||
printBaseOffsetPair (MI, 0);
|
||||
printBaseOffsetPair (MI, 1);
|
||||
O << ", ";
|
||||
printOperand (MI->getOperand (2));
|
||||
printOperand (MI->getOperand (0));
|
||||
O << "\n";
|
||||
return;
|
||||
} else if (isStoreInstruction (MI)) {
|
||||
|
Loading…
Reference in New Issue
Block a user