From: Chris Lattner Date: Sun, 10 Nov 2002 06:53:38 +0000 (+0000) Subject: Initialize PrintAuxCalls member X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2a06886759a691b167b28a0084ad95f2c2411012;p=oota-llvm.git Initialize PrintAuxCalls member git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4677 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 427c54377bc..169ccbf9f33 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -129,6 +129,7 @@ namespace { // DSGraph constructor - Simply use the GraphBuilder to construct the local // graph. DSGraph::DSGraph(Function &F, DSGraph *GG) : Func(&F), GlobalsGraph(GG) { + PrintAuxCalls = false; // Use the graph builder to construct the local version of the graph GraphBuilder B(*this, Nodes, RetNode, ScalarMap, FunctionCalls); markIncompleteNodes();