[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/Local.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Jul 1 23:39:25 PDT 2003


Changes in directory llvm/lib/Analysis/DataStructure:

Local.cpp updated: 1.57 -> 1.58

---
Log message:

Make local pass print out its progress


---
Diffs of the changes:

Index: llvm/lib/Analysis/DataStructure/Local.cpp
diff -u llvm/lib/Analysis/DataStructure/Local.cpp:1.57 llvm/lib/Analysis/DataStructure/Local.cpp:1.58
--- llvm/lib/Analysis/DataStructure/Local.cpp:1.57	Sun Jun 29 23:53:27 2003
+++ llvm/lib/Analysis/DataStructure/Local.cpp	Tue Jul  1 23:37:26 2003
@@ -142,6 +142,9 @@
 // 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





More information about the llvm-commits mailing list