From 2597c1158f6da0292a417dcf493c4ee961a5a1cb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 10 Nov 2002 06:53:38 +0000 Subject: [PATCH] Initialize PrintAuxCalls member llvm-svn: 4677 --- lib/Analysis/DataStructure/Local.cpp | 1 + 1 file changed, 1 insertion(+) 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();