Handle DW_FORM_implicit_const when displaying an attribute

* dwarf.c (read_and_display_attr_value): Handle
	DW_FORM_implicit_const.
This commit is contained in:
Nick Clifton 2021-06-30 16:17:46 +01:00
parent 280c57ff58
commit c63fc3680a
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2021-06-30 Tom Tromey <tom@tromey.com>
* dwarf.c (read_and_display_attr_value): Handle
DW_FORM_implicit_const.
2021-06-30 Richard Henderson <richard.henderson@linaro.org>
* dwarf.c (display_debug_frames): Both DW_CFA_def_cfa_sf

View file

@ -2517,6 +2517,10 @@ read_and_display_attr_value (unsigned long attribute,
offset_size, dwarf_version,
debug_info_p, do_loc,
section, this_set, delimiter, level);
case DW_FORM_implicit_const:
uvalue = implicit_const;
break;
}
switch (form)