aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-10 06:53:38 +0000
committerChris Lattner <sabre@nondot.org>2002-11-10 06:53:38 +0000
commit2a06886759a691b167b28a0084ad95f2c2411012 (patch)
treef09434b17c941c4aed12cee22a13009796def268 /lib/Analysis
parent8013f9eb659b1d9379308dcf93653c4ae473b428 (diff)
downloadexternal_llvm-2a06886759a691b167b28a0084ad95f2c2411012.zip
external_llvm-2a06886759a691b167b28a0084ad95f2c2411012.tar.gz
external_llvm-2a06886759a691b167b28a0084ad95f2c2411012.tar.bz2
Initialize PrintAuxCalls member
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/DataStructure/Local.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp
index 427c543..169ccbf 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();