Add missing space
authorChris Lattner <sabre@nondot.org>
Mon, 19 Aug 2002 20:42:12 +0000 (20:42 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 19 Aug 2002 20:42:12 +0000 (20:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3387 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Pass.cpp

index 28244518df78e5619884dedd6e7079d7015b5765..24f14f804bf23b767deaebb69d0ca51f99a5fe79 100644 (file)
@@ -124,7 +124,7 @@ void TimeRecord::passEnd(const TimeRecord &T) {
 
 static void printVal(double Val, double Total) {
   if (Total < 1e-7)   // Avoid dividing by zero...
-    fprintf(stderr, "        -----    ");
+    fprintf(stderr, "        -----     ");
   else
     fprintf(stderr, "  %7.4f (%5.1f%%)", Val, Val*100/Total);
 }