diff options
author | Meghan Denny <hello@nektro.net> | 2023-08-07 13:07:07 +0200 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-08-12 09:58:22 +0930 |
commit | 82fc3423c36c2cdc413910dac2e3c9faf0c59967 (patch) | |
tree | 659a2fe135b12ccf682b07b8fd8e590170edff76 /include | |
parent | 9ba1efd2150b7fb061f4262c93b9e9e1287d81b4 (diff) | |
download | gdb-82fc3423c36c2cdc413910dac2e3c9faf0c59967.zip gdb-82fc3423c36c2cdc413910dac2e3c9faf0c59967.tar.gz gdb-82fc3423c36c2cdc413910dac2e3c9faf0c59967.tar.bz2 |
Updated constants from <https://dwarfstd.org/Languages.php>
include/
* dwarf2.h: Update with additional languages from dwarf
standard.
Diffstat (limited to 'include')
-rw-r--r-- | include/dwarf2.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h index c3fd393..6d9b003 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -373,6 +373,16 @@ enum dwarf_source_language DW_LANG_Fortran03 = 0x0022, DW_LANG_Fortran08 = 0x0023, DW_LANG_RenderScript = 0x0024, + DW_LANG_BLISS = 0x0025, + DW_LANG_Kotlin = 0x0026, + DW_LANG_Zig = 0x0027, + DW_LANG_Crystal = 0x0028, + DW_LANG_C_plus_plus_17 = 0x002a, + DW_LANG_C_plus_plus_20 = 0x002b, + DW_LANG_C17 = 0x002c, + DW_LANG_Fortran18 = 0x002d, + DW_LANG_Ada2005 = 0x002e, + DW_LANG_Ada2012 = 0x002f, DW_LANG_lo_user = 0x8000, /* Implementation-defined range start. */ DW_LANG_hi_user = 0xffff, /* Implementation-defined range start. */ |