summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/DataStructure/Steensgaard.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/Steensgaard.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/Steensgaard.cpp')
-rw-r--r--llvm/lib/Analysis/DataStructure/Steensgaard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Steensgaard.cpp b/llvm/lib/Analysis/DataStructure/Steensgaard.cpp
index 6dc2bda30be..e42ef231761 100644
--- a/llvm/lib/Analysis/DataStructure/Steensgaard.cpp
+++ b/llvm/lib/Analysis/DataStructure/Steensgaard.cpp
@@ -194,7 +194,7 @@ bool Steens::run(Module &M) {
ResultGraph->markIncompleteNodes(false);
// Remove any nodes that are dead after all of the merging we have done...
- ResultGraph->removeDeadNodes(true);
+ ResultGraph->removeDeadNodes();
DEBUG(print(std::cerr, &M));
return false;
OpenPOWER on IntegriCloud