diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/readelf.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4b55bbcd..b1041a83 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2018-05-05 Mark Wielaard <[email protected]> + + * readelf.c (attr_callback): Handle DW_FORM_ref_sup4 and + DW_FORM_ref_sup8 as references. + 2018-04-24 Mark Wielaard <[email protected]> * readelf.c (print_debug_str_section): Take raw section data. Don't diff --git a/src/readelf.c b/src/readelf.c index c2fcfff9..c69910ab 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -6130,6 +6130,8 @@ attr_callback (Dwarf_Attribute *attrp, void *arg) case DW_FORM_ref2: case DW_FORM_ref1: case DW_FORM_GNU_ref_alt: + case DW_FORM_ref_sup4: + case DW_FORM_ref_sup8: if (cbargs->silent) break; Dwarf_Die ref; |
