Make sure HasDebugValue is initialized. This should fix

the buildbot running valgrind.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98216 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2010-03-11 00:52:12 +00:00
parent 5265a12f53
commit ae47e461eb

View File

@ -1383,9 +1383,9 @@ protected:
/// This constructor adds no operands itself; operands can be /// This constructor adds no operands itself; operands can be
/// set later with InitOperands. /// set later with InitOperands.
SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs) SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs)
: NodeType(Opc), OperandsNeedDelete(false), SubclassData(0), : NodeType(Opc), OperandsNeedDelete(false), HasDebugValue(false),
NodeId(-1), OperandList(0), ValueList(VTs.VTs), UseList(NULL), SubclassData(0), NodeId(-1), OperandList(0), ValueList(VTs.VTs),
NumOperands(0), NumValues(VTs.NumVTs), UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
debugLoc(dl) {} debugLoc(dl) {}
/// InitOperands - Initialize the operands list of this with 1 operand. /// InitOperands - Initialize the operands list of this with 1 operand.