projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8164e51
)
tools: Add a space between package version and LLVM_VERSION_INFO
author
Justin Bogner
<mail@justinbogner.com>
Tue, 17 Jun 2014 06:52:41 +0000
(06:52 +0000)
committer
Justin Bogner
<mail@justinbogner.com>
Tue, 17 Jun 2014 06:52:41 +0000
(06:52 +0000)
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
lib/Support/CommandLine.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/CommandLine.cpp
b/lib/Support/CommandLine.cpp
index b2bb7466c11237754af4633cc374864174d0cbe6..e09d4b6e47b4fc0a37b3ec68c579b68b91f6d804 100644
(file)
--- 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__