diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0f07cd42ea..0e59683d42 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2021-02-09 Tom de Vries + + PR binutils/27370 + * dwarf.c (get_type_abbrev_from_form): Handle DW_FORM_ref_sig8. + 2021-02-09 Tom de Vries PR binutils/27386 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 6797dd158d..d6eb8926db 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -2117,6 +2117,7 @@ get_type_abbrev_from_form (unsigned long form, switch (form) { case DW_FORM_GNU_ref_alt: + case DW_FORM_ref_sig8: /* FIXME: We are unable to handle this form at the moment. */ return NULL;