From: Chris Lattner Date: Wed, 2 Jul 2003 04:37:26 +0000 (+0000) Subject: Make local pass print out its progress X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3051419036b518275afac9b57570429736254bdc;p=oota-llvm.git Make local pass print out its progress git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7058 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 27d5ce563aa..485aa30d232 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -142,6 +142,9 @@ namespace { // graph. DSGraph::DSGraph(Function &F, DSGraph *GG) : GlobalsGraph(GG) { PrintAuxCalls = false; + + DEBUG(std::cerr << " [Loc] Calculating graph for: " << F.getName() << "\n"); + // Use the graph builder to construct the local version of the graph GraphBuilder B(F, *this, Nodes, ReturnNodes[&F], ScalarMap, FunctionCalls); #ifndef NDEBUG