diff options
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.cpp b/llvm/lib/CodeGen/LiveDebugVariables.cpp index e6661e5..6d80613 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.cpp +++ b/llvm/lib/CodeGen/LiveDebugVariables.cpp @@ -152,7 +152,7 @@ public: } } - DbgVariableValue() : LocNoCount(0), WasIndirect(0), WasList(0) {} + DbgVariableValue() : LocNoCount(0), WasIndirect(false), WasList(false) {} DbgVariableValue(const DbgVariableValue &Other) : LocNoCount(Other.LocNoCount), WasIndirect(Other.getWasIndirect()), WasList(Other.getWasList()), Expression(Other.getExpression()) { |