From 29abc971009cf4b18c02e7e972de92d98aef3784 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 7 Jul 2003 22:28:42 +0000 Subject: [PATCH] Fixed indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7122 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llc/llc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 49371afd54b..4d1bb772edf 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -33,7 +33,7 @@ enum ArchName { noarch, x86, Sparc }; static cl::opt Arch("march", cl::desc("Architecture to generate assembly for:"), cl::Prefix, cl::values(clEnumVal(x86, " IA-32 (Pentium and above)"), - clEnumValN(Sparc, "sparc", " SPARC V9"), + clEnumValN(Sparc, "sparc", " SPARC V9"), 0), cl::init(noarch));