diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-14 20:25:08 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-14 20:25:08 +0000 |
commit | 9c4b7d5c4f38ee34f05affbcae478104325e5a1d (patch) | |
tree | bf4bd1230af2c6640083872b99a9317f296724dc /llvm/lib/Target/IA64/IA64TargetMachine.cpp | |
parent | c064d4edc49866c5b4a7043ce6b2d3c1b278f879 (diff) | |
download | bcm5719-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/IA64/IA64TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/IA64/IA64TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/IA64/IA64TargetMachine.cpp b/llvm/lib/Target/IA64/IA64TargetMachine.cpp index c789a8649a2..1b811b645d7 100644 --- a/llvm/lib/Target/IA64/IA64TargetMachine.cpp +++ b/llvm/lib/Target/IA64/IA64TargetMachine.cpp @@ -26,7 +26,7 @@ using namespace llvm; extern "C" int IA64TargetMachineModule; int IA64TargetMachineModule = 0; -static RegisterTarget<IA64TargetMachine> X("ia64", " IA-64 (Itanium)"); +static RegisterTarget<IA64TargetMachine> X("ia64", "IA-64 (Itanium)"); const TargetAsmInfo *IA64TargetMachine::createTargetAsmInfo() const { return new IA64TargetAsmInfo(*this); |