[llvm-commits] [llvm] r98216 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Dale Johannesen dalej at apple.com
Wed Mar 10 16:52:12 PST 2010


Author: johannes
Date: Wed Mar 10 18:52:12 2010
New Revision: 98216

URL: http://llvm.org/viewvc/llvm-project?rev=98216&view=rev
Log:
Make sure HasDebugValue is initialized.  This should fix
the buildbot running valgrind.


Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=98216&r1=98215&r2=98216&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Wed Mar 10 18:52:12 2010
@@ -1383,9 +1383,9 @@
   /// This constructor adds no operands itself; operands can be
   /// set later with InitOperands.
   SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs)
-    : NodeType(Opc), OperandsNeedDelete(false), SubclassData(0),
-      NodeId(-1), OperandList(0), ValueList(VTs.VTs), UseList(NULL),
-      NumOperands(0), NumValues(VTs.NumVTs),
+    : NodeType(Opc), OperandsNeedDelete(false), HasDebugValue(false),
+      SubclassData(0), NodeId(-1), OperandList(0), ValueList(VTs.VTs),
+      UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
       debugLoc(dl) {}
 
   /// InitOperands - Initialize the operands list of this with 1 operand.





More information about the llvm-commits mailing list