summaryrefslogtreecommitdiff
path: root/tools/llc
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-10-14 20:25:08 +0000
committerDan Gohman <gohman@apple.com>2008-10-14 20:25:08 +0000
commitb8cab9227a0f6ffbdaae33e3c64268e265008a6a (patch)
tree0f1b5e70c2370fc9b8093bf2b9066e411bbe109d /tools/llc
parentb34dd13a0f306178aec9d7cfb848fd727f6f818f (diff)
downloadllvm-b8cab9227a0f6ffbdaae33e3c64268e265008a6a.tar.gz
llvm-b8cab9227a0f6ffbdaae33e3c64268e265008a6a.tar.bz2
llvm-b8cab9227a0f6ffbdaae33e3c64268e265008a6a.tar.xz
Fix command-line option printing to print two spaces where needed,
instead of requiring all "short description" strings to begin with two spaces. This makes these strings less mysterious, and it fixes some cases where short description strings mistakenly did not begin with two spaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/llc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 03972b10ca..f185490725 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -80,11 +80,11 @@ FileType("filetype", cl::init(TargetMachine::AssemblyFile),
cl::desc("Choose a file type (not all types are supported by all targets):"),
cl::values(
clEnumValN(TargetMachine::AssemblyFile, "asm",
- " Emit an assembly ('.s') file"),
+ "Emit an assembly ('.s') file"),
clEnumValN(TargetMachine::ObjectFile, "obj",
- " Emit a native object ('.o') file [experimental]"),
+ "Emit a native object ('.o') file [experimental]"),
clEnumValN(TargetMachine::DynamicLibrary, "dynlib",
- " Emit a native dynamic library ('.so') file"
+ "Emit a native dynamic library ('.so') file"
" [experimental]"),
clEnumValEnd));