We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c57120 commit 1620151Copy full SHA for 1620151
1 file changed
crates/core_arch/src/aarch64/mod.rs
@@ -25,11 +25,17 @@ mod neon;
25
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
26
pub use self::neon::*;
27
28
+// The rest of `core_arch::aarch64` is available on `arm64ec` but SVE is not supported on `arm64ec`.
29
+#[cfg(any(target_arch = "aarch64", doc))]
30
mod sve;
31
32
#[unstable(feature = "stdarch_aarch64_sve", issue = "145052")]
33
pub use self::sve::*;
34
35
36
37
mod sve2;
38
39
40
pub use self::sve2::*;
41
0 commit comments