binutils/ChangeLog

* readelf.c (read_and_display_attr_value): Handle a DW_AT_encoding
	value of DW_ATE_GNU_decimal_float.

include/elf/ChangeLog
	* dwarf2.h (enum dwarf_type): Assign DW_ATE_GNU_decimal_float from
	the user-defined encoding space pending inclusion in the standard.
This commit is contained in:
Ben Elliston
2005-05-18 22:42:09 +00:00
parent cb1afa5cf4
commit d68f40330b
4 changed files with 16 additions and 2 deletions

View File

@@ -8419,6 +8419,8 @@ read_and_display_attr_value (unsigned long attribute,
case DW_ATE_unsigned_char: printf ("(unsigned char)"); break;
/* 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;
default:
if (uvalue >= DW_ATE_lo_user
&& uvalue <= DW_ATE_hi_user)