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 52cba7d commit 8c6e821Copy full SHA for 8c6e821
src/lib.rs
@@ -4,9 +4,9 @@
4
#![feature(core_intrinsics)]
5
#![feature(linkage)]
6
#![feature(naked_functions)]
7
+#![no_builtins]
8
// TODO(rust-lang/rust#35021) uncomment when that PR lands
9
// #![feature(rustc_builtins)]
-#![no_builtins]
10
11
// We disable #[no_mangle] for tests so that we can verify the test results
12
// against the native compiler-rt implementations of the builtins.
@@ -19,6 +19,7 @@ extern crate quickcheck;
19
pub mod arm;
20
21
pub mod udiv;
22
+#[cfg(all(not(windows), not(target_os = "macos")))]
23
pub mod mem;
24
pub mod mul;
25
pub mod shift;
0 commit comments