diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-27 21:50:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-27 21:50:41 +0000 |
commit | 825a02ae360d67326370fbe38ca7137dacd6c2ca (patch) | |
tree | 2d139bfad58582d91ad50066a5b061886f3c4980 /lib/Analysis/DataStructure/CompleteBottomUp.cpp | |
parent | 660f1e90ec350509e2d78f9075aad421d9e78941 (diff) |
Get clone flags right, so we don't build InlinedGlobals only to clear them
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10984 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/CompleteBottomUp.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/CompleteBottomUp.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/lib/Analysis/DataStructure/CompleteBottomUp.cpp index 0cbe0257b5..58327016dc 100644 --- a/lib/Analysis/DataStructure/CompleteBottomUp.cpp +++ b/lib/Analysis/DataStructure/CompleteBottomUp.cpp @@ -141,8 +141,7 @@ unsigned CompleteBUDataStructures::calculateSCCGraphs(DSGraph &FG, ValMap[NG] = ~0U; DSGraph::NodeMapTy NodeMap; - FG.cloneInto(*NG, FG.getScalarMap(), FG.getReturnNodes(), NodeMap, - DSGraph::UpdateInlinedGlobals); + FG.cloneInto(*NG, FG.getScalarMap(), FG.getReturnNodes(), NodeMap); // Update the DSInfo map and delete the old graph... for (DSGraph::ReturnNodesTy::iterator I = NG->getReturnNodes().begin(); @@ -194,7 +193,7 @@ void CompleteBUDataStructures::processGraph(DSGraph &G) { // Re-materialize nodes from the globals graph. // Do not ignore globals inlined from callees -- they are not up-to-date! - G.getInlinedGlobals().clear(); + assert(G.getInlinedGlobals().empty()); G.updateFromGlobalGraph(); // Recompute the Incomplete markers |