summaryrefslogtreecommitdiff
path: root/lib/CompilerDriver/Action.cpp
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-05-20 21:11:37 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-05-20 21:11:37 +0000
commitdcc44670f4eb5d2341977593fb9bea3cd2f189e9 (patch)
treea73e53726d236ec2d77ba817cbebe0977cf1f741 /lib/CompilerDriver/Action.cpp
parenta5528785089bfd093a36cbc2eddcc35980c5340e (diff)
downloadllvm-dcc44670f4eb5d2341977593fb9bea3cd2f189e9.tar.gz
llvm-dcc44670f4eb5d2341977593fb9bea3cd2f189e9.tar.bz2
llvm-dcc44670f4eb5d2341977593fb9bea3cd2f189e9.tar.xz
Print a space after the colon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104279 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CompilerDriver/Action.cpp')
-rw-r--r--lib/CompilerDriver/Action.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CompilerDriver/Action.cpp b/lib/CompilerDriver/Action.cpp
index 5917af6faa..5f30dce585 100644
--- 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);
}