Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion elftools/dwarf/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ def _create_dw_form(self):
DW_FORM_strp=self.the_Dwarf_offset,
DW_FORM_strp_sup=self.the_Dwarf_offset,
DW_FORM_line_strp=self.the_Dwarf_offset,
DW_FORM_strx=self.the_Dwarf_uleb128,
DW_FORM_strx1=self.the_Dwarf_uint8,
DW_FORM_strx2=self.the_Dwarf_uint16,
DW_FORM_strx3=self.Dwarf_uint24(''),
Expand All @@ -317,7 +318,7 @@ def _create_dw_form(self):

DW_FORM_indirect=self.the_Dwarf_uleb128,

# Treated separatedly while parsing, but here so that all forms resovle
# Treated separatedly while parsing, but here so that all forms resolve
DW_FORM_implicit_const=None,

# New forms in DWARFv4
Expand Down