diff options
author | Ben Elliston <bje@au.ibm.com> | 2005-05-18 22:42:09 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2005-05-18 22:42:09 +0000 |
commit | d68f40330b9e3c4b4d87bcee28671cea893959f3 (patch) | |
tree | fc8c1cc15786addad53aeab76a1a26542b67dd97 /include | |
parent | cb1afa5cf44cf3a223975c6a174fe42d53321126 (diff) | |
download | gdb-d68f40330b9e3c4b4d87bcee28671cea893959f3.zip gdb-d68f40330b9e3c4b4d87bcee28671cea893959f3.tar.gz gdb-d68f40330b9e3c4b4d87bcee28671cea893959f3.tar.bz2 |
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.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/dwarf2.h | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 6f68882..66c553f 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2005-05-19 Ben Elliston <bje@au.ibm.com> + + * dwarf2.h (enum dwarf_type): Assign DW_ATE_GNU_decimal_float from + the user-defined encoding space pending inclusion in the standard. + 2005-05-18 Zack Weinberg <zack@codesourcery.com> * arm.h: Make all #ifndef OLD_ARM_ABI blocks diff --git a/include/elf/dwarf2.h b/include/elf/dwarf2.h index 6932489..1ce89ee 100644 --- a/include/elf/dwarf2.h +++ b/include/elf/dwarf2.h @@ -1,7 +1,7 @@ /* Declarations and definitions of codes relating to the DWARF2 symbolic debugging information format. Copyright (C) 1992, 1993, 1995, 1996, 1997, 1999, 2000, 2001, 2002, - 2003 Free Software Foundation, Inc. + 2003, 2005 Free Software Foundation, Inc. Written by Gary Funck (gary@intrepid.com) The Ada Joint Program Office (AJPO), Florida State University and Silicon Graphics Inc. @@ -554,7 +554,9 @@ enum dwarf_type DW_ATE_HP_complex_float128 = 0x83, /* Complex floating-point (128 bit). */ DW_ATE_HP_floathpintel = 0x84, /* Floating-point (82 bit IA64). */ DW_ATE_HP_imaginary_float80 = 0x85, - DW_ATE_HP_imaginary_float128 = 0x86 + DW_ATE_HP_imaginary_float128 = 0x86, + /* GNU extensions. */ + DW_ATE_GNU_decimal_float = 0x87 /* Pending DWARF working group. */ }; #define DW_ATE_lo_user 0x80 |