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

Chris Lattner lattner at cs.uiuc.edu
Wed Jul 2 14:50:01 PDT 2003


Changes in directory llvm/lib/Analysis/DataStructure:

TopDownClosure.cpp updated: 1.48 -> 1.49

---
Log message:

Try using trivially dead deletion


---
Diffs of the changes:

Index: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.48 llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.49
--- llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.48	Tue Jul  1 23:39:44 2003
+++ llvm/lib/Analysis/DataStructure/TopDownClosure.cpp	Wed Jul  2 14:49:11 2003
@@ -135,6 +135,7 @@
 
 void TDDataStructures::inlineGraphIntoCallees(DSGraph &Graph) {
   // Recompute the Incomplete markers and eliminate unreachable nodes.
+  Graph.removeTriviallyDeadNodes();
   Graph.maskIncompleteMarkers();
 
   // If any of the functions has incomplete incoming arguments, don't mark any





More information about the llvm-commits mailing list