diff options
author | Chris Lattner <sabre@nondot.org> | 2003-01-23 22:05:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-01-23 22:05:33 +0000 |
commit | a1d9011d6ed1ccf92ba8380bde0bdef65d893ba9 (patch) | |
tree | 6649fee192ba9b15169b61f4a15273c359321aa5 /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 98034fa4079fecd7e506d3890412158dd7ae5711 (diff) | |
download | bcm5719-llvm-a1d9011d6ed1ccf92ba8380bde0bdef65d893ba9.tar.gz bcm5719-llvm-a1d9011d6ed1ccf92ba8380bde0bdef65d893ba9.zip |
* Eliminate boolean arguments in favor of using enums
* T-D pass now eliminates unreachable globals
llvm-svn: 5419
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index c7fb42d860e..d1c96261dcc 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -364,8 +364,8 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { // Recompute the Incomplete markers. If there are any function calls left // now that are complete, we must loop! Graph.maskIncompleteMarkers(); - Graph.markIncompleteNodes(); - Graph.removeDeadNodes(); + Graph.markIncompleteNodes(DSGraph::MarkFormalArgs); + Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals); DEBUG(std::cerr << " [BU] Done inlining: " << F.getName() << " [" << Graph.getGraphSize() << "+" << Graph.getAuxFunctionCalls().size() @@ -440,8 +440,8 @@ DSGraph &BUDataStructures::inlineNonSCCGraphs(Function &F, // Recompute the Incomplete markers. If there are any function calls left // now that are complete, we must loop! Graph.maskIncompleteMarkers(); - Graph.markIncompleteNodes(); - Graph.removeDeadNodes(); + Graph.markIncompleteNodes(DSGraph::MarkFormalArgs); + Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals); DEBUG(std::cerr << " [BU] Done Non-SCC inlining: " << F.getName() << " [" << Graph.getGraphSize() << "+" << Graph.getAuxFunctionCalls().size() @@ -535,8 +535,8 @@ DSGraph &BUDataStructures::calculateSCCGraph(Function &F, // Recompute the Incomplete markers. If there are any function calls left // now that are complete, we must loop! Graph.maskIncompleteMarkers(); - Graph.markIncompleteNodes(); - Graph.removeDeadNodes(); + Graph.markIncompleteNodes(DSGraph::MarkFormalArgs); + Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals); DEBUG(std::cerr << " [BU] Done inlining: " << F.getName() << " [" << Graph.getGraphSize() << "+" << Graph.getAuxFunctionCalls().size() |