diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-08 21:08:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-08 21:08:46 +0000 |
commit | 068c0cf56a26ce7d5be24d00b1aa173af6fe0276 (patch) | |
tree | 1a36d1c800da9c1764b9e4aba85bd0e0cd583f1f | |
parent | 1feea5ffc9d9f76c2511f76de1c5bcf3fc407d12 (diff) | |
download | bcm5719-llvm-068c0cf56a26ce7d5be24d00b1aa173af6fe0276.tar.gz bcm5719-llvm-068c0cf56a26ce7d5be24d00b1aa173af6fe0276.zip |
Fix a bug that was preventing povray and namd from pool allocating correctly.
llvm-svn: 17632
-rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index a358cc5f910..67938b7cde5 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -205,7 +205,7 @@ unsigned BUDataStructures::calculateGraphs(Function *F, } // 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... |