We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
miri
portable
1 parent 552f6ea commit 9ad3448Copy full SHA for 9ad3448
1 file changed
cmov/src/lib.rs
@@ -6,10 +6,15 @@
6
)]
7
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
8
9
+#[cfg(not(miri))]
10
#[cfg(target_arch = "aarch64")]
11
mod aarch64;
-#[cfg(not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")))]
12
+#[cfg(any(
13
+ not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")),
14
+ miri
15
+))]
16
mod portable;
17
18
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
19
mod x86;
20
0 commit comments