aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/MSIL
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
commit669b9bf656d0bdb22bee268c4dec5eb3b3add6d0 (patch)
tree0f1b5e70c2370fc9b8093bf2b9066e411bbe109d /lib/Target/MSIL
parent0e3da1a836c39a1396f51562f08ae217fa9bc8f8 (diff)
downloadexternal_llvm-669b9bf656d0bdb22bee268c4dec5eb3b3add6d0.tar.gz
external_llvm-669b9bf656d0bdb22bee268c4dec5eb3b3add6d0.tar.bz2
external_llvm-669b9bf656d0bdb22bee268c4dec5eb3b3add6d0.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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSIL')
-rw-r--r--lib/Target/MSIL/MSILWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/MSIL/MSILWriter.cpp b/lib/Target/MSIL/MSILWriter.cpp
index 8e4ca1fcd9..a27c0cc688 100644
--- a/lib/Target/MSIL/MSILWriter.cpp
+++ b/lib/Target/MSIL/MSILWriter.cpp
@@ -45,7 +45,7 @@ namespace {
}
-static RegisterTarget<MSILTarget> X("msil", " MSIL backend");
+static RegisterTarget<MSILTarget> X("msil", "MSIL backend");
bool MSILModule::runOnModule(Module &M) {
ModulePtr = &M;