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

Chris Lattner lattner at cs.uiuc.edu
Mon Nov 8 13:09:00 PST 2004



Changes in directory llvm/lib/Analysis/DataStructure:

BottomUpClosure.cpp updated: 1.83 -> 1.84
---
Log message:

Fix a bug that was preventing povray and namd from pool allocating correctly.


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.83 llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.84
--- llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.83	Sun Oct 31 15:54:51 2004
+++ llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp	Mon Nov  8 15:08:46 2004
@@ -205,7 +205,7 @@
     }
 
     // Clean up the graph before we start inlining a bunch again...
-    SCCGraph->removeDeadNodes(DSGraph::RemoveUnreachableGlobals);
+    SCCGraph->removeDeadNodes(DSGraph::KeepUnreachableGlobals);
 
     // Now that we have one big happy family, resolve all of the call sites in
     // the graph...






More information about the llvm-commits mailing list