summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-06-17 06:52:41 +0000
committerJustin Bogner <mail@justinbogner.com>2014-06-17 06:52:41 +0000
commitd0dbed10d5f08aa3efa31af7287e4c1b34735c57 (patch)
treedf6936c7d93b1407ff80311e5402de20951aa5a5 /lib/Support
parent8164e516bad4f741dba2ccb02733e7b4ffed6e29 (diff)
downloadllvm-d0dbed10d5f08aa3efa31af7287e4c1b34735c57.tar.gz
llvm-d0dbed10d5f08aa3efa31af7287e4c1b34735c57.tar.bz2
llvm-d0dbed10d5f08aa3efa31af7287e4c1b34735c57.tar.xz
tools: Add a space between package version and LLVM_VERSION_INFO
This reads a little strangely. Add a space to clean it up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/CommandLine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp
index b2bb7466c1..e09d4b6e47 100644
--- a/lib/Support/CommandLine.cpp
+++ b/lib/Support/CommandLine.cpp
@@ -1699,7 +1699,7 @@ public:
OS << "LLVM (http://llvm.org/):\n"
<< " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
#ifdef LLVM_VERSION_INFO
- OS << LLVM_VERSION_INFO;
+ OS << " " << LLVM_VERSION_INFO;
#endif
OS << "\n ";
#ifndef __OPTIMIZE__