diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-10 06:53:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-10 06:53:38 +0000 |
commit | 17da287408f5dac11d761b7936855c06c74283c0 (patch) | |
tree | 3556af50c0e1606c23d1dae8bd4328dc07d54321 /llvm/lib/Analysis/DataStructure/Local.cpp | |
parent | 6fa433344dd63b3ef637793908472f6103bfc14b (diff) | |
download | bcm5719-llvm-17da287408f5dac11d761b7936855c06c74283c0.tar.gz bcm5719-llvm-17da287408f5dac11d761b7936855c06c74283c0.zip |
Initialize PrintAuxCalls member
llvm-svn: 4677
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 427c54377bc..169ccbf9f33 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/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(); |