Initialize member out of paranoia
authorChris Lattner <sabre@nondot.org>
Sun, 2 May 2004 16:06:40 +0000 (16:06 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 2 May 2004 16:06:40 +0000 (16:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13319 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/CallGraph.h

index 9114eed9d3b3c8ea5feb2e6f5deb1fccf85c4e73..901100dd1f1111448e526f2278389fe6c6cb7f8d 100644 (file)
@@ -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.