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 | ac6d4854e1ba8d8be4db275375170d19d5d7e9f7 (patch) | |
tree | 0d212d9fb890d495abf7c4de5afde99fe7b86706 /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | beacefae61fdba4a9a2c03ccbfdc07ccfa58f878 (diff) |
Fix a bug that was preventing povray and namd from pool allocating correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index a358cc5f91..67938b7cde 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/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... |