[Lldb-commits] [lldb] [lldb][DWARF64] Enable support for DWARF64 format handling (PR #145645)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 30 05:24:08 PDT 2025
================
@@ -288,7 +284,9 @@ bool DWARFFormValue::SkipValue(dw_form_t form,
case DW_FORM_sec_offset:
case DW_FORM_strp:
case DW_FORM_line_strp:
- *offset_ptr += 4;
+ assert(unit); // Unit must be valid
+ ref_addr_size = unit->GetFormParams().getDwarfOffsetByteSize();
----------------
Michael137 wrote:
Same comment re. `ref_addr_size`
https://github.com/llvm/llvm-project/pull/145645
More information about the lldb-commits
mailing list