mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-27 06:54:30 +00:00
Initialize member out of paranoia
llvm-svn: 13319
This commit is contained in:
parent
f5f6f8c0de
commit
2e752b62b4
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user