diff options
| author | Dale Johannesen <dalej@apple.com> | 2010-03-11 00:52:12 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2010-03-11 00:52:12 +0000 |
| commit | 28492aa62629f1fbd53ab86e673060f02b02733a (patch) | |
| tree | fec38abe82199b7365e69365254491d06deb32b3 /llvm | |
| parent | 1b0e614b107991ef3bbe98e7243881deaa4636b6 (diff) | |
| download | bcm5719-llvm-28492aa62629f1fbd53ab86e673060f02b02733a.tar.gz bcm5719-llvm-28492aa62629f1fbd53ab86e673060f02b02733a.zip | |
Make sure HasDebugValue is initialized. This should fix
the buildbot running valgrind.
llvm-svn: 98216
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index 21a0b984b64..52ccc2d9b37 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1383,9 +1383,9 @@ protected: /// 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. |

