Fix misleading indentation
authorChris Lattner <sabre@nondot.org>
Sun, 17 Nov 2002 22:57:23 +0000 (22:57 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 17 Nov 2002 22:57:23 +0000 (22:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4730 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SparcV9/SparcV9AsmPrinter.cpp

index 80e0f642718d7b12577b9b98ab652a1d9e16d3cf..38518eef41c2c9ebd23df1ffa645047112387351 100644 (file)
@@ -457,9 +457,8 @@ SparcFunctionAsmPrinter::emitMachineInst(const MachineInstr *MI)
       if (NeedComma) toAsm << ", ";         // Handle comma outputing
       NeedComma = true;
       N = printOperands(MI, OpNum);
-    }
-  else
-    N = 1;
+    } else
+      N = 1;
   
   toAsm << "\n";
 }