We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d166ee9 commit 6b35963Copy full SHA for 6b35963
src/libcompiler_builtins/lib.rs
@@ -16,13 +16,9 @@
16
issue = "0")]
17
#![crate_name = "compiler_builtins"]
18
#![crate_type = "rlib"]
19
-#![feature(staged_api)]
20
-#![cfg_attr(any(target_pointer_width="32", target_pointer_width="16", target_os="windows",
21
- target_arch="mips64"),
22
- feature(core_intrinsics, repr_simd))]
23
-#![feature(associated_consts)]
24
-#![cfg_attr(not(stage0), feature(i128_type, core_float, abi_unadjusted))]
25
-
+#![allow(unused_features)]
+#![feature(staged_api, core_intrinsics, repr_simd,
+ i128_type, core_float, abi_unadjusted, associated_consts)]
26
#![allow(non_camel_case_types, unused_variables, unused_imports)]
27
#![cfg_attr(stage0, allow(dead_code))]
28
0 commit comments