[1/8] Add DW_LANG_Rust and DW_LANG_Rust_old

Message ID 1461725371-17620-2-git-send-email-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey April 27, 2016, 2:49 a.m. UTC
  I include this patch for completeness.  I've already submitted it to
gcc-patches for review:

https://gcc.gnu.org/ml/gcc-patches/2016-04/msg01560.html
---
 include/dwarf2.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
  

Comments

Pedro Alves April 27, 2016, 11:44 a.m. UTC | #1
Obviously OK (with ChangeLog entry) once pushed upstream.

Thanks,
Pedro Alves
  

Patch

diff --git a/include/dwarf2.h b/include/dwarf2.h
index bc5424a..1a145aa 100644
--- a/include/dwarf2.h
+++ b/include/dwarf2.h
@@ -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.  */