From: nasm-bot f. C. G. <gor...@gm...> - 2017-03-25 22:12:30
|
Commit-ID: c95c2536b4de46584750fd1ac197464c305297f4 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=c95c2536b4de46584750fd1ac197464c305297f4 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sat, 25 Mar 2017 11:47:36 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sat, 25 Mar 2017 20:55:48 +0300 dwarf: Update dwarf_language Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/dwarf.h | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/output/dwarf.h b/output/dwarf.h index cc3c530..dc425a6 100644 --- a/output/dwarf.h +++ b/output/dwarf.h @@ -460,11 +460,30 @@ enum dwarf_language { DW_LANG_ObjC_plus_plus = 0x0011, DW_LANG_UPC = 0x0012, DW_LANG_D = 0x0013, + DW_LANG_Python = 0x0014, + DW_LANG_OpenCL = 0x0015, + DW_LANG_Go = 0x0016, + DW_LANG_Modula3 = 0x0017, + DW_LANG_Haskell = 0x0018, + DW_LANG_C_plus_plus_03 = 0x0019, + DW_LANG_C_plus_plus_11 = 0x001a, + DW_LANG_OCaml = 0x001b, + DW_LANG_Rust = 0x001c, + DW_LANG_C11 = 0x001d, + DW_LANG_Swift = 0x001e, + DW_LANG_Julia = 0x001f, + DW_LANG_Dylan = 0x0020, + DW_LANG_C_plus_plus_14 = 0x0021, + DW_LANG_Fortran03 = 0x0022, + DW_LANG_Fortran08 = 0x0023, + DW_LANG_RenderScript = 0x0024, DW_LANG_Mips_Assembler = 0x8001, DW_LANG_lo_user = 0x8000, - DW_LANG_hi_user = 0xffff + DW_LANG_hi_user = 0xffff, + + DW_LANG_Rust_old = 0x9000 }; enum dwarf_identifier_case { |