[llvm-commits] [poolalloc] r128817 - /poolalloc/trunk/lib/DSA/DataStructureStats.cpp

Arushi Aggarwal aggarwa4 at illinois.edu
Mon Apr 4 07:34:12 PDT 2011


Author: aggarwa4
Date: Mon Apr  4 09:34:12 2011
New Revision: 128817

URL: http://llvm.org/viewvc/llvm-project?rev=128817&view=rev
Log:
Minor formatting changes.

Modified:
    poolalloc/trunk/lib/DSA/DataStructureStats.cpp

Modified: poolalloc/trunk/lib/DSA/DataStructureStats.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/DSA/DataStructureStats.cpp?rev=128817&r1=128816&r2=128817&view=diff
==============================================================================
--- poolalloc/trunk/lib/DSA/DataStructureStats.cpp (original)
+++ poolalloc/trunk/lib/DSA/DataStructureStats.cpp Mon Apr  4 09:34:12 2011
@@ -26,8 +26,10 @@
 using namespace llvm;
 
 namespace {
-  STATISTIC (TotalNumCallees, "Total number of callee functions at all indirect call sites");
-  STATISTIC (NumIndirectCalls, "Total number of indirect call sites in the program");
+  STATISTIC (TotalNumCallees, 
+             "Total number of callee functions at all indirect call sites");
+  STATISTIC (NumIndirectCalls, 
+             "Total number of indirect call sites in the program");
 
   // Typed/Untyped memory accesses: If DSA can infer that the types the loads
   // and stores are accessing are correct (ie, the node has not been collapsed),
@@ -130,7 +132,7 @@
         ++numIndirectCalls;
       } else {
         DEBUG(errs() << "WARNING: No callee in Function '" 
-              << F.getNameStr() << "' at call: \n"
+              << F.getNameStr() << " at call: \n"
               << *I->getCallSite().getInstruction());
       }
     }





More information about the llvm-commits mailing list