aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-17 22:57:23 +0000
committerChris Lattner <sabre@nondot.org>2002-11-17 22:57:23 +0000
commitebdc7f32e9c2404d3a1cbe26bf65890cdc4d1f04 (patch)
tree2b2343e765c9e6301896a487633a9682d5f5f54d /lib/Target
parent9bca50d6ddb8b53659a8db1dfa91a8b239178fe9 (diff)
downloadexternal_llvm-ebdc7f32e9c2404d3a1cbe26bf65890cdc4d1f04.zip
external_llvm-ebdc7f32e9c2404d3a1cbe26bf65890cdc4d1f04.tar.gz
external_llvm-ebdc7f32e9c2404d3a1cbe26bf65890cdc4d1f04.tar.bz2
Fix misleading indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4730 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/SparcV9/SparcV9AsmPrinter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp
index 80e0f64..38518ee 100644
--- a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp
+++ b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp
@@ -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";
}