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/SparcV8/SparcV8AsmPrinter.cpp b/lib/Target/SparcV8/SparcV8AsmPrinter.cpp
index 71a7971..e6b0a98 100644
--- a/lib/Target/SparcV8/SparcV8AsmPrinter.cpp
+++ b/lib/Target/SparcV8/SparcV8AsmPrinter.cpp
@@ -467,12 +467,12 @@
   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)) {