From: Brian Gaeke Date: Wed, 7 Apr 2004 04:29:03 +0000 (+0000) Subject: Fix bug in printing loads. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fa4bb09cf042dc0f30297082f55bc37f35c0f5f5;p=oota-llvm.git Fix bug in printing loads. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12741 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Sparc/SparcAsmPrinter.cpp b/lib/Target/Sparc/SparcAsmPrinter.cpp index 71a797105ff..e6b0a98f034 100644 --- a/lib/Target/Sparc/SparcAsmPrinter.cpp +++ b/lib/Target/Sparc/SparcAsmPrinter.cpp @@ -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)) { diff --git a/lib/Target/SparcV8/SparcV8AsmPrinter.cpp b/lib/Target/SparcV8/SparcV8AsmPrinter.cpp index 71a797105ff..e6b0a98f034 100644 --- a/lib/Target/SparcV8/SparcV8AsmPrinter.cpp +++ b/lib/Target/SparcV8/SparcV8AsmPrinter.cpp @@ -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)) {