We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5e845 commit a0943d0Copy full SHA for a0943d0
src/librustc_trans/debuginfo/metadata.rs
@@ -50,7 +50,9 @@ use syntax::{ast, codemap};
50
use syntax::parse::token;
51
52
53
-const DW_LANG_RUST: c_uint = 0x9000;
+// From DWARF 5.
54
+// See http://www.dwarfstd.org/ShowIssue.php?issue=140129.1
55
+const DW_LANG_RUST: c_uint = 0x1c;
56
#[allow(non_upper_case_globals)]
57
const DW_ATE_boolean: c_uint = 0x02;
58
0 commit comments