mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-27 22:10:32 +00:00
dwarf.c handle new DWARFv5 C11, C++11 and C++14 DW_LANG constants.
binutils/ChangeLog * dwarf.c (read_and_display_attr_value): Handle DW_LANG_C11, DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14.
This commit is contained in:
parent
3fe1ce1d5b
commit
8bc106204c
@ -1,3 +1,8 @@
|
||||
2014-11-24 Mark Wielaard <mjw@redhat.com>
|
||||
|
||||
* dwarf.c (read_and_display_attr_value): Handle DW_LANG_C11,
|
||||
DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14.
|
||||
|
||||
2014-11-26 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR binutils/17512
|
||||
|
@ -1935,6 +1935,9 @@ read_and_display_attr_value (unsigned long attribute,
|
||||
case DW_LANG_Python: printf ("(Python)"); break;
|
||||
/* 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_C_plus_plus_14: printf ("(C++14)"); break;
|
||||
/* MIPS extension. */
|
||||
case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break;
|
||||
/* UPC extension. */
|
||||
|
Loading…
Reference in New Issue
Block a user