mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 14:39:09 +08:00
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:
@ -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
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user