mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
core_arch: no SVE on arm64ec
arm64ec doesn't support SVE.
This commit is contained in:
@@ -25,11 +25,17 @@
|
||||
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
|
||||
pub use self::neon::*;
|
||||
|
||||
// The rest of `core_arch::aarch64` is available on `arm64ec` but SVE is not supported on `arm64ec`.
|
||||
#[cfg(any(target_arch = "aarch64", doc))]
|
||||
mod sve;
|
||||
#[cfg(any(target_arch = "aarch64", doc))]
|
||||
#[unstable(feature = "stdarch_aarch64_sve", issue = "145052")]
|
||||
pub use self::sve::*;
|
||||
|
||||
// The rest of `core_arch::aarch64` is available on `arm64ec` but SVE is not supported on `arm64ec`.
|
||||
#[cfg(any(target_arch = "aarch64", doc))]
|
||||
mod sve2;
|
||||
#[cfg(any(target_arch = "aarch64", doc))]
|
||||
#[unstable(feature = "stdarch_aarch64_sve", issue = "145052")]
|
||||
pub use self::sve2::*;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user