aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/dwarf.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index d01c5eb..b81c81d 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2011-12-28 Ian Lance Taylor <iant@google.com>
+
+ * dwarf.c (read_and_display_attr_value): Handle DW_LANG_Go.
+
2011-12-20 Roland McGrath <mcgrathr@google.com>
* configure.in (--enable-deterministic-archives): Grok new
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index 1196246..a775818 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -1599,6 +1599,8 @@ read_and_display_attr_value (unsigned long attribute,
case DW_LANG_D: printf ("(D)"); break;
/* DWARF 4 values. */
case DW_LANG_Python: printf ("(Python)"); break;
+ /* DWARF 5 values. */
+ case DW_LANG_Go: printf ("(Go)"); break;
/* MIPS extension. */
case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break;
/* UPC extension. */