diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-19 20:42:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-19 20:42:12 +0000 |
commit | db8d8eff2f4a08e9f6c97bca1408ee3ab49566fa (patch) | |
tree | 4da01bec2e12b7d24373e80d3c52f81d9fe56b6c | |
parent | d03de90bb12a5a2b4f8626bc85e40e7a6d16c4a4 (diff) |
Add missing space
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3387 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index 28244518df..24f14f804b 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -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); } |