diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2016-06-23 15:47:44 -0400 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2016-06-23 15:54:55 -0400 |
commit | 79bb0de3e5eb6c345ebf3f8be5effc0a84c4a3bd (patch) | |
tree | 31c846a121fd34f29dd4166f7f9fd26a79060aae /include/dwarf2.h | |
parent | eba8d258f19fbe66a0c9689af21bb22c2f81c6ad (diff) | |
download | cygnal-79bb0de3e5eb6c345ebf3f8be5effc0a84c4a3bd.tar.gz cygnal-79bb0de3e5eb6c345ebf3f8be5effc0a84c4a3bd.tar.bz2 cygnal-79bb0de3e5eb6c345ebf3f8be5effc0a84c4a3bd.zip |
Sync with upstream gcc.
Diffstat (limited to 'include/dwarf2.h')
-rw-r--r-- | include/dwarf2.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h index 4ada87162..1a145aa48 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -1,6 +1,6 @@ /* Declarations and definitions of codes relating to the DWARF2 and DWARF3 symbolic debugging information formats. - Copyright (C) 1992-2015 Free Software Foundation, Inc. + Copyright (C) 1992-2016 Free Software Foundation, Inc. Written by Gary Funck (gary@intrepid.com) The Ada Joint Program Office (AJPO), Florida State University and Silicon Graphics Inc. @@ -308,6 +308,7 @@ enum dwarf_source_language DW_LANG_Go = 0x0016, DW_LANG_C_plus_plus_11 = 0x001a, /* dwarf5.20141029.pdf DRAFT */ + DW_LANG_Rust = 0x001c, DW_LANG_C11 = 0x001d, DW_LANG_C_plus_plus_14 = 0x0021, DW_LANG_Fortran03 = 0x0022, @@ -325,7 +326,10 @@ enum dwarf_source_language DW_LANG_HP_Basic91 = 0x8004, DW_LANG_HP_Pascal91 = 0x8005, DW_LANG_HP_IMacro = 0x8006, - DW_LANG_HP_Assembler = 0x8007 + DW_LANG_HP_Assembler = 0x8007, + + /* Rust extension, but replaced in DWARF 5. */ + DW_LANG_Rust_old = 0x9000 }; /* Names and codes for macro information. */ |