From: Chris Lattner Date: Tue, 4 Feb 2003 00:59:32 +0000 (+0000) Subject: Make the TD pass not include all of the call nodes from the local pass, X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=24d80079a8949402800fb13994b32db3c671356b;p=oota-llvm.git Make the TD pass not include all of the call nodes from the local pass, eliminating incomplete markers from them git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5490 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index 49b3a5482e8..460088f6d26 100644 --- a/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -87,6 +87,7 @@ DSGraph &TDDataStructures::getOrCreateDSGraph(Function &F) { if (G == 0) { // Not created yet? Clone BU graph... G = new DSGraph(getAnalysis().getDSGraph(F)); G->getAuxFunctionCalls().clear(); + G->setPrintAuxCalls(); G->setGlobalsGraph(GlobalsGraph); } return *G;