summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-08 21:08:46 +0000
committerChris Lattner <sabre@nondot.org>2004-11-08 21:08:46 +0000
commit068c0cf56a26ce7d5be24d00b1aa173af6fe0276 (patch)
tree1a36d1c800da9c1764b9e4aba85bd0e0cd583f1f
parent1feea5ffc9d9f76c2511f76de1c5bcf3fc407d12 (diff)
downloadbcm5719-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.cpp2
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...
OpenPOWER on IntegriCloud