Display all DWARF 5 language names

I happened to notice that objdump was not printing "Rust" when showing
the DW_AT_language for a CU:

    <10>   DW_AT_language    : 28	(Unknown: 1c)

This patch adds all the new language constants from DWARF 5 to
binutils/dwarf.c.

2018-04-06  Tom Tromey  <tom@tromey.com>

	* dwarf.c (read_and_display_attr_value): Add missing DW_LANG
	constants from DWARF 5.
This commit is contained in:
Tom Tromey 2018-04-05 10:52:29 -06:00
parent a6fd92b057
commit 2008a0dbe3
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2018-04-06 Tom Tromey <tom@tromey.com>
* dwarf.c (read_and_display_attr_value): Add missing DW_LANG
constants from DWARF 5.
2018-04-05 H.J. Lu <hongjiu.lu@intel.com>
PR gas/22318

View File

@ -2352,12 +2352,22 @@ read_and_display_attr_value (unsigned long attribute,
/* DWARF 4 values. */
case DW_LANG_Python: printf ("(Python)"); break;
/* DWARF 5 values. */
case DW_LANG_OpenCL: printf ("(OpenCL)"); break;
case DW_LANG_Go: printf ("(Go)"); break;
case DW_LANG_Modula3: printf ("(Modula 3)"); break;
case DW_LANG_Haskell: printf ("(Haskell)"); break;
case DW_LANG_C_plus_plus_03: printf ("(C++03)"); break;
case DW_LANG_C_plus_plus_11: printf ("(C++11)"); break;
case DW_LANG_OCaml: printf ("(OCaml)"); break;
case DW_LANG_Rust: printf ("(Rust)"); break;
case DW_LANG_C11: printf ("(C11)"); break;
case DW_LANG_Swift: printf ("(Swift)"); break;
case DW_LANG_Julia: printf ("(Julia)"); break;
case DW_LANG_Dylan: printf ("(Dylan)"); break;
case DW_LANG_C_plus_plus_14: printf ("(C++14)"); break;
case DW_LANG_Fortran03: printf ("(Fortran 03)"); break;
case DW_LANG_Fortran08: printf ("(Fortran 08)"); break;
case DW_LANG_RenderScript: printf ("(RenderScript)"); break;
/* MIPS extension. */
case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break;
/* UPC extension. */