projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b11e33
)
Initialize member out of paranoia
author
Chris Lattner
<sabre@nondot.org>
Sun, 2 May 2004 16:06:40 +0000
(16:06 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/include/llvm/Analysis/CallGraph.h
b/include/llvm/Analysis/CallGraph.h
index 9114eed9d3b3c8ea5feb2e6f5deb1fccf85c4e73..901100dd1f1111448e526f2278389fe6c6cb7f8d 100644
(file)
--- 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.