diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-09 21:00:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-09 21:00:49 +0000 |
commit | 65f2897f2c6f25de147fdcf9dcf4b5f9650b32ce (patch) | |
tree | f404f07771cb46b99f09c11761cb8b6d3bd8343a /lib/Analysis/DataStructure/Local.cpp | |
parent | 96517253a1d26c9248ff42065f118d41f3835fc0 (diff) |
Clean up DSGraph::removeDeadNodes interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 3df4fd4f60..e159a6087e 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -134,7 +134,7 @@ DSGraph::DSGraph(Function &F, DSGraph *GG) : Func(&F), GlobalsGraph(GG) { markIncompleteNodes(); // Remove any nodes made dead due to merging... - removeDeadNodes(true, true); + removeDeadNodes(true); } |