diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dwarf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 48957bd..2833ad0 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2014-12-18 Mark Wielaard <mjw@redhat.com> + + * dwarf.c (read_and_display_attr_value): Change display name of + DW_LANG_C11 from (ANSI C11) to (C11). + 2014-12-11 Nick Clifton <nickc@redhat.com> PR binutils/17512 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 10d639c..49f9c49 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -1936,7 +1936,7 @@ read_and_display_attr_value (unsigned long attribute, /* DWARF 5 values. */ case DW_LANG_Go: printf ("(Go)"); break; case DW_LANG_C_plus_plus_11: printf ("(C++11)"); break; - case DW_LANG_C11: printf ("(ANSI C11)"); break; + case DW_LANG_C11: printf ("(C11)"); break; case DW_LANG_C_plus_plus_14: printf ("(C++14)"); break; /* MIPS extension. */ case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break; |