diff options
| -rw-r--r-- | lldb/source/Expression/DWARFExpression.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Expression/DWARFExpression.cpp b/lldb/source/Expression/DWARFExpression.cpp index 327d5e142d8..1d0ad6f7bf3 100644 --- a/lldb/source/Expression/DWARFExpression.cpp +++ b/lldb/source/Expression/DWARFExpression.cpp @@ -3013,8 +3013,9 @@ DWARFExpression::AddressRangeForLocationListEntry(const DWARFCompileUnit* dwarf_ // Not supported entry type return false; } - return true; } + assert (false && "Not supported location list type"); + return false; } static bool |

