mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 00:25:01 +00:00
Fix uninitialized member problem
llvm-svn: 5534
This commit is contained in:
parent
fade2f7d18
commit
d4faf8a5da
@ -37,7 +37,8 @@ class DSGraph {
|
|||||||
|
|
||||||
void operator=(const DSGraph &); // DO NOT IMPLEMENT
|
void operator=(const DSGraph &); // DO NOT IMPLEMENT
|
||||||
public:
|
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
|
DSGraph(Function &F, DSGraph *GlobalsGraph); // Compute the local DSGraph
|
||||||
|
|
||||||
// Copy ctor - If you want to capture the node mapping between the source and
|
// Copy ctor - If you want to capture the node mapping between the source and
|
||||||
|
Loading…
Reference in New Issue
Block a user