From: Chris Lattner Date: Sun, 2 May 2004 16:06:40 +0000 (+0000) Subject: Initialize member out of paranoia X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1570cb14d7e1ce8041533baeeefcb19cee7a414c;p=oota-llvm.git Initialize member out of paranoia git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13319 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h index 9114eed9d3b..901100dd1f1 100644 --- a/include/llvm/Analysis/CallGraph.h +++ b/include/llvm/Analysis/CallGraph.h @@ -84,7 +84,6 @@ class CallGraph : public Pass { CallGraphNode *CallsExternalNode; public: - //===--------------------------------------------------------------------- // Accessors... // @@ -145,7 +144,7 @@ public: //===--------------------------------------------------------------------- // Pass infrastructure interface glue code... // - CallGraph() : Root(0) {} + CallGraph() : Root(0), CallsExternalNode(0) {} ~CallGraph() { destroy(); } // run - Compute the call graph for the specified module.