mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-04 08:37:45 +00:00
Fix uninitialized member problem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1fcc101b1c
commit
d3c2e3237c
@ -37,7 +37,8 @@ class DSGraph {
|
||||
|
||||
void operator=(const DSGraph &); // DO NOT IMPLEMENT
|
||||
public:
|
||||
DSGraph() : Func(0), GlobalsGraph(0) {} // Create a new, empty, DSGraph.
|
||||
// Create a new, empty, DSGraph.
|
||||
DSGraph() : Func(0), GlobalsGraph(0), PrintAuxCalls(false) {}
|
||||
DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph
|
||||
|
||||
// Copy ctor - If you want to capture the node mapping between the source and
|
||||
|
@ -37,7 +37,8 @@ class DSGraph {
|
||||
|
||||
void operator=(const DSGraph &); // DO NOT IMPLEMENT
|
||||
public:
|
||||
DSGraph() : Func(0), GlobalsGraph(0) {} // Create a new, empty, DSGraph.
|
||||
// Create a new, empty, DSGraph.
|
||||
DSGraph() : Func(0), GlobalsGraph(0), PrintAuxCalls(false) {}
|
||||
DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph
|
||||
|
||||
// Copy ctor - If you want to capture the node mapping between the source and
|
||||
|
Loading…
x
Reference in New Issue
Block a user