diff options
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/source/Expression/DWARFExpression.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/DWARFExpression.cpp b/lldb/source/Expression/DWARFExpression.cpp index 4503182acfe..c8b0b5944e8 100644 --- a/lldb/source/Expression/DWARFExpression.cpp +++ b/lldb/source/Expression/DWARFExpression.cpp @@ -3031,14 +3031,14 @@ bool DWARFExpression::AddressRangeForLocationListEntry( switch (debug_loc_data.GetU8(offset_ptr)) { case DW_LLE_end_of_list: return false; - case DW_LLE_start_end: { + case DW_LLE_startx_endx: { uint64_t index = debug_loc_data.GetULEB128(offset_ptr); low_pc = ReadAddressFromDebugAddrSection(dwarf_cu, index); index = debug_loc_data.GetULEB128(offset_ptr); high_pc = ReadAddressFromDebugAddrSection(dwarf_cu, index); return true; } - case DW_LLE_start_length: { + case DW_LLE_startx_length: { uint64_t index = debug_loc_data.GetULEB128(offset_ptr); low_pc = ReadAddressFromDebugAddrSection(dwarf_cu, index); uint32_t length = debug_loc_data.GetU32(offset_ptr); |

