summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-09 22:07:02 +0000
committerChris Lattner <sabre@nondot.org>2002-11-09 22:07:02 +0000
commit715a3a3b5ce9a79e15cc8161155d77dca194dfcd (patch)
tree3353b15dc87222b4e370f0cfb71e09c4a08ce1a8 /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
parent3e32cd8e8b6ed2e2d164525535a4f91dd3358721 (diff)
downloadbcm5719-llvm-715a3a3b5ce9a79e15cc8161155d77dca194dfcd.tar.gz
bcm5719-llvm-715a3a3b5ce9a79e15cc8161155d77dca194dfcd.zip
eliminate the ability to remove global nodes from deadNodeElminate... for now.
This slows stuff down a bit, but it should get much better before it gets any worse. llvm-svn: 4666
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
-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 ade6ca68a5c..c03e1c20e71 100644
--- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
+++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
@@ -154,7 +154,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
if (Inlined) {
Graph->maskIncompleteMarkers();
Graph->markIncompleteNodes();
- Graph->removeDeadNodes(/*KeepAllGlobals*/ true);
+ Graph->removeDeadNodes();
}
} while (Inlined && !FCs.empty());
OpenPOWER on IntegriCloud