diff options
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 |