From 3362e0d9fb6c0e34a2875295c34ca3f73cdf8892 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 29 Dec 2011 01:53:00 +0000 Subject: [PATCH] * dwarf.c (read_and_display_attr_value): Handle DW_LANG_Go. --- binutils/ChangeLog | 4 ++++ binutils/dwarf.c | 2 ++ 2 files changed, 6 insertions(+) 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 + + * dwarf.c (read_and_display_attr_value): Handle DW_LANG_Go. + 2011-12-20 Roland McGrath * 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. */ -- 2.7.4