Fix bug in printing loads.
authorBrian Gaeke <gaeke@uiuc.edu>
Wed, 7 Apr 2004 04:29:03 +0000 (04:29 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Wed, 7 Apr 2004 04:29:03 +0000 (04:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12741 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Sparc/SparcAsmPrinter.cpp
lib/Target/SparcV8/SparcV8AsmPrinter.cpp

index 71a797105ff7ca0d6dfbbd747e48e4dd51abbf54..e6b0a98f0341018e75fcf6e9b29fdbf47b9779a5 100644 (file)
@@ -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)) {
index 71a797105ff7ca0d6dfbbd747e48e4dd51abbf54..e6b0a98f0341018e75fcf6e9b29fdbf47b9779a5 100644 (file)
@@ -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)) {