commit | 96517253a1d26c9248ff42065f118d41f3835fc0 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Nov 09 20:55:24 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Nov 09 20:55:24 2002 +0000 |
tree | 1a5d2adb3e18ce4919eed5763fea74f231785cb0 | |
parent | 3ce235a161b8738ea3bf781c2306cf6540a59269 [diff] [blame] |
Make removeTriviallyDeadNodes a private interface of DSGraph git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4659 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/DataStructure/Steensgaard.cpp b/lib/Analysis/DataStructure/Steensgaard.cpp index aad8657..5ee4dc4 100644 --- a/lib/Analysis/DataStructure/Steensgaard.cpp +++ b/lib/Analysis/DataStructure/Steensgaard.cpp
@@ -194,7 +194,7 @@ ResultGraph->markIncompleteNodes(false); // Remove any nodes that are dead after all of the merging we have done... - ResultGraph->removeTriviallyDeadNodes(); + ResultGraph->removeDeadNodes(true, true); DEBUG(print(std::cerr, &M)); return false;