diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-04 00:59:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-04 00:59:32 +0000 |
commit | 24d80079a8949402800fb13994b32db3c671356b (patch) | |
tree | 7440f00ec07fec7307c95692fdee68e824a3855a /lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | f52ade928c256e6336356b55b7d07c0f56d6a96a (diff) |
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
Diffstat (limited to 'lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/TopDownClosure.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index 49b3a5482e..460088f6d2 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<BUDataStructures>().getDSGraph(F)); G->getAuxFunctionCalls().clear(); + G->setPrintAuxCalls(); G->setGlobalsGraph(GlobalsGraph); } return *G; |