aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2010-01-14 09:19:56 +0000
committerTristan Gingold <gingold@adacore.com>2010-01-14 09:19:56 +0000
commit60a0e0e75c275d93b6b14b6d794688e232e84a0d (patch)
tree32eec9b6b96e947c9eba2a1d626d99376fb5260b /binutils
parentbe759fcf73cbf7ac59863c57389cd97c70c09a47 (diff)
downloadgdb-60a0e0e75c275d93b6b14b6d794688e232e84a0d.zip
gdb-60a0e0e75c275d93b6b14b6d794688e232e84a0d.tar.gz
gdb-60a0e0e75c275d93b6b14b6d794688e232e84a0d.tar.bz2
2010-01-14 Tristan Gingold <gingold@adacore.com>
* dwarf.c (get_AT_name): Handle DW_AT_use_GNAT_descriptive_type and DW_AT_GNAT_descriptive_type.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/dwarf.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 82d912f..2dfc75f 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2010-01-14 Tristan Gingold <gingold@adacore.com>
+
+ * dwarf.c (get_AT_name): Handle DW_AT_use_GNAT_descriptive_type
+ and DW_AT_GNAT_descriptive_type.
+
2010-01-13 Tristan Gingold <gingold@adacore.com>
* ar.c (main): Use lbasename.
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index eb6c2d7..93eb15a 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -1802,6 +1802,8 @@ get_AT_name (unsigned long attribute)
case DW_AT_GNU_exclusive_locks_required: return "DW_AT_GNU_exclusive_locks_required";
case DW_AT_GNU_shared_locks_required: return "DW_AT_GNU_shared_locks_required";
case DW_AT_GNU_odr_signature: return "DW_AT_GNU_odr_signature";
+ case DW_AT_use_GNAT_descriptive_type: return "DW_AT_use_GNAT_descriptive_type";
+ case DW_AT_GNAT_descriptive_type: return "DW_AT_GNAT_descriptive_type";
/* UPC extension. */
case DW_AT_upc_threads_scaled: return "DW_AT_upc_threads_scaled";