diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-05-20 21:11:37 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-05-20 21:11:37 +0000 |
commit | 3a4829220421325665ac20ba0f0ff464db3c0646 (patch) | |
tree | 00ceb64950e561a747845d1ab9e95fe74e640590 /llvm/lib/CompilerDriver | |
parent | 6295f2ebb86a416b5e8aa06845f39a3ed669e929 (diff) | |
download | bcm5719-llvm-3a4829220421325665ac20ba0f0ff464db3c0646.tar.gz bcm5719-llvm-3a4829220421325665ac20ba0f0ff464db3c0646.zip |
Print a space after the colon.
llvm-svn: 104279
Diffstat (limited to 'llvm/lib/CompilerDriver')
-rw-r--r-- | llvm/lib/CompilerDriver/Action.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CompilerDriver/Action.cpp b/llvm/lib/CompilerDriver/Action.cpp index 5917af6faae..5f30dce5855 100644 --- a/llvm/lib/CompilerDriver/Action.cpp +++ b/llvm/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); } |