[llvm] r211090 - tools: Add a space between package version and LLVM_VERSION_INFO

Justin Bogner mail at justinbogner.com
Mon Jun 16 23:52:45 PDT 2014


Author: bogner
Date: Tue Jun 17 01:52:41 2014
New Revision: 211090

URL: http://llvm.org/viewvc/llvm-project?rev=211090&view=rev
Log:
tools: Add a space between package version and LLVM_VERSION_INFO

This reads a little strangely. Add a space to clean it up.

Modified:
    llvm/trunk/lib/Support/CommandLine.cpp

Modified: llvm/trunk/lib/Support/CommandLine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/CommandLine.cpp?rev=211090&r1=211089&r2=211090&view=diff
==============================================================================
--- llvm/trunk/lib/Support/CommandLine.cpp (original)
+++ llvm/trunk/lib/Support/CommandLine.cpp Tue Jun 17 01:52:41 2014
@@ -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__





More information about the llvm-commits mailing list