[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon Feb 3 19:01:03 PST 2003
Changes in directory llvm/lib/Analysis/DataStructure:
TopDownClosure.cpp updated: 1.34 -> 1.35
---
Log message:
Make the TD pass not include all of the call nodes from the local pass,
eliminating incomplete markers from them
---
Diffs of the changes:
Index: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.34 llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.35
--- llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.34 Mon Feb 3 16:51:28 2003
+++ llvm/lib/Analysis/DataStructure/TopDownClosure.cpp Mon Feb 3 18:59:32 2003
@@ -87,6 +87,7 @@
if (G == 0) { // Not created yet? Clone BU graph...
G = new DSGraph(getAnalysis<BUDataStructures>().getDSGraph(F));
G->getAuxFunctionCalls().clear();
+ G->setPrintAuxCalls();
G->setGlobalsGraph(GlobalsGraph);
}
return *G;
More information about the llvm-commits
mailing list