[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Feb 11 00:37:01 PST 2003
Changes in directory llvm/include/llvm/Analysis:
DSGraph.h updated: 1.46 -> 1.47
---
Log message:
Fix uninitialized member problem
---
Diffs of the changes:
Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.46 llvm/include/llvm/Analysis/DSGraph.h:1.47
--- llvm/include/llvm/Analysis/DSGraph.h:1.46 Mon Feb 10 12:17:38 2003
+++ llvm/include/llvm/Analysis/DSGraph.h Tue Feb 11 00:36:00 2003
@@ -37,7 +37,8 @@
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
More information about the llvm-commits
mailing list