Add stability attributes for re-exports of AArch64 NEON intrinsics

This commit is contained in:
Amanieu d'Antras
2023-10-26 12:09:46 +01:00
parent b10902e788
commit 1838ada25d
2 changed files with 3 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
#[cfg(target_endian = "little")] #[cfg(target_endian = "little")]
mod neon; mod neon;
#[cfg(target_endian = "little")] #[cfg(target_endian = "little")]
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
pub use self::neon::*; pub use self::neon::*;
mod tme; mod tme;
@@ -21,6 +22,7 @@ pub use self::crc::*;
mod prefetch; mod prefetch;
pub use self::prefetch::*; pub use self::prefetch::*;
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
pub use super::arm_shared::*; pub use super::arm_shared::*;
#[cfg(test)] #[cfg(test)]

View File

@@ -5,6 +5,7 @@
#[rustfmt::skip] #[rustfmt::skip]
mod generated; mod generated;
#[rustfmt::skip] #[rustfmt::skip]
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
pub use self::generated::*; pub use self::generated::*;
// FIXME: replace neon with asimd // FIXME: replace neon with asimd