[llvm-commits] [llvm] r104279 - /llvm/trunk/lib/CompilerDriver/Action.cpp

Mikhail Glushenkov foldr at codedgers.com
Thu May 20 14:11:38 PDT 2010


Author: foldr
Date: Thu May 20 16:11:37 2010
New Revision: 104279

URL: http://llvm.org/viewvc/llvm-project?rev=104279&view=rev
Log:
Print a space after the colon.

Modified:
    llvm/trunk/lib/CompilerDriver/Action.cpp

Modified: llvm/trunk/lib/CompilerDriver/Action.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CompilerDriver/Action.cpp?rev=104279&r1=104278&r2=104279&view=diff
==============================================================================
--- llvm/trunk/lib/CompilerDriver/Action.cpp (original)
+++ llvm/trunk/lib/CompilerDriver/Action.cpp Thu May 20 16:11:37 2010
@@ -39,7 +39,7 @@
   }
 
   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 @@
     int ret = sys::Program::ExecuteAndWait(prog, &argv[0], 0, &redirects[0]);
 
     if (IsSegmentationFault(ret)) {
-      errs() << "Segmentation fault:";
+      errs() << "Segmentation fault: ";
       PrintCommand(name, args);
     }
 





More information about the llvm-commits mailing list