binutils/

* readelf.c (read_and_display_attr_value): Handle a DW_AT_encoding
	value of DW_ATE_decimal_float instead of DW_ATE_GNU_decimal_float.
include/elf/
	* dwarf2.h (enum dwarf_type): Remove DW_AT_GNU_decimal_float.
	Replace with DW_ATE_decimal_float (now in DWARF 3).
This commit is contained in:
Ben Elliston 2005-07-18 04:13:05 +00:00
parent 64f611c437
commit df45824af6
4 changed files with 13 additions and 4 deletions

View file

@ -8616,7 +8616,7 @@ read_and_display_attr_value (unsigned long attribute,
/* DWARF 2.1 value. */
case DW_ATE_imaginary_float: printf ("(imaginary float)"); break;
/* GNU extension. */
case DW_ATE_GNU_decimal_float: printf ("(decimal float)"); break;
case DW_ATE_decimal_float: printf ("(decimal float)"); break;
default:
if (uvalue >= DW_ATE_lo_user
&& uvalue <= DW_ATE_hi_user)