diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-09 22:07:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-09 22:07:02 +0000 |
commit | f40f0a39bdd3846725576caf0d5a3fe261deecad (patch) | |
tree | cbcc53a9ce171b851e6158e5c398c1accb542678 /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | dd398486cab0cce9f3b7406248c5d333c63e9ddf (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4666 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 ade6ca68a5..c03e1c20e7 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/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()); |