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:
a552878
)
Print a space after the colon.
author
Mikhail Glushenkov
<foldr@codedgers.com>
Thu, 20 May 2010 21:11:37 +0000
(21:11 +0000)
committer
Mikhail Glushenkov
<foldr@codedgers.com>
Thu, 20 May 2010 21:11:37 +0000
(21:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104279
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CompilerDriver/Action.cpp
patch
|
blob
|
history
diff --git
a/lib/CompilerDriver/Action.cpp
b/lib/CompilerDriver/Action.cpp
index 5917af6faae508cf6bb79d229d5a0402eaafe705..5f30dce5855fd42293b3b58663bce7c249809865 100644
(file)
--- a/
lib/CompilerDriver/Action.cpp
+++ b/
lib/CompilerDriver/Action.cpp
@@
-39,7
+39,7
@@
namespace {
}
void PrintCommand (const std::string& Cmd, const StrVector& Args) {
- errs() << Cmd <<
" "
;
+ errs() << Cmd <<
' '
;
std::for_each(Args.begin(), Args.end(), &PrintString);
errs() << '\n';
}
@@
-89,7
+89,7
@@
namespace {
int ret = sys::Program::ExecuteAndWait(prog, &argv[0], 0, &redirects[0]);
if (IsSegmentationFault(ret)) {
- errs() << "Segmentation fault:";
+ errs() << "Segmentation fault:
";
PrintCommand(name, args);
}