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 /include/llvm/Analysis/DSGraph.h | |
parent | dd398486cab0cce9f3b7406248c5d333c63e9ddf (diff) | |
download | external_llvm-f40f0a39bdd3846725576caf0d5a3fe261deecad.zip external_llvm-f40f0a39bdd3846725576caf0d5a3fe261deecad.tar.gz external_llvm-f40f0a39bdd3846725576caf0d5a3fe261deecad.tar.bz2 |
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 'include/llvm/Analysis/DSGraph.h')
-rw-r--r-- | include/llvm/Analysis/DSGraph.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DSGraph.h b/include/llvm/Analysis/DSGraph.h index 1c7f77f..1a4695c 100644 --- a/include/llvm/Analysis/DSGraph.h +++ b/include/llvm/Analysis/DSGraph.h @@ -135,7 +135,7 @@ public: // from the caller's graph entirely. This is only appropriate to use when // inlining graphs. // - void removeDeadNodes(bool KeepAllGlobals); + void removeDeadNodes(); // CloneFlags enum - Bits that may be passed into the cloneInto method to // specify how to clone the function graph. @@ -172,7 +172,7 @@ private: // merged with other nodes in the graph. This is used as the first step of // removeDeadNodes. // - void removeTriviallyDeadNodes(bool KeepAllGlobals = false); + void removeTriviallyDeadNodes(); }; #endif |