commit | f40f0a39bdd3846725576caf0d5a3fe261deecad | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Nov 09 22:07:02 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Nov 09 22:07:02 2002 +0000 |
tree | cbcc53a9ce171b851e6158e5c398c1accb542678 | |
parent | dd398486cab0cce9f3b7406248c5d333c63e9ddf [diff] [blame] |
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
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index ade6ca6..c03e1c2 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp
@@ -154,7 +154,7 @@ if (Inlined) { Graph->maskIncompleteMarkers(); Graph->markIncompleteNodes(); - Graph->removeDeadNodes(/*KeepAllGlobals*/ true); + Graph->removeDeadNodes(); } } while (Inlined && !FCs.empty());