summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86TargetMachine.cpp
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
commit9c4b7d5c4f38ee34f05affbcae478104325e5a1d (patch)
treebf4bd1230af2c6640083872b99a9317f296724dc /llvm/lib/Target/X86/X86TargetMachine.cpp
parentc064d4edc49866c5b4a7043ce6b2d3c1b278f879 (diff)
downloadbcm5719-llvm-9c4b7d5c4f38ee34f05affbcae478104325e5a1d.tar.gz
bcm5719-llvm-9c4b7d5c4f38ee34f05affbcae478104325e5a1d.zip
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. llvm-svn: 57521
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r--llvm/lib/Target/X86/X86TargetMachine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86TargetMachine.cpp b/llvm/lib/Target/X86/X86TargetMachine.cpp
index 860868adf16..923823b98cd 100644
--- a/llvm/lib/Target/X86/X86TargetMachine.cpp
+++ b/llvm/lib/Target/X86/X86TargetMachine.cpp
@@ -32,9 +32,9 @@ int X86TargetMachineModule = 0;
// Register the target.
static RegisterTarget<X86_32TargetMachine>
-X("x86", " 32-bit X86: Pentium-Pro and above");
+X("x86", "32-bit X86: Pentium-Pro and above");
static RegisterTarget<X86_64TargetMachine>
-Y("x86-64", " 64-bit X86: EM64T and AMD64");
+Y("x86-64", "64-bit X86: EM64T and AMD64");
// No assembler printer by default
X86TargetMachine::AsmPrinterCtorFn X86TargetMachine::AsmPrinterCtor = 0;
OpenPOWER on IntegriCloud