Skip to content

Commit 8ec0726

Browse files
committed
Add stability attributes for re-exports of AArch64 NEON intrinsics
1 parent a88b37a commit 8ec0726

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

crates/core_arch/src/aarch64/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#[cfg(target_endian = "little")]
1111
mod neon;
1212
#[cfg(target_endian = "little")]
13+
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
1314
pub use self::neon::*;
1415

1516
mod tme;
@@ -21,6 +22,7 @@ pub use self::crc::*;
2122
mod prefetch;
2223
pub use self::prefetch::*;
2324

25+
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
2426
pub use super::arm_shared::*;
2527

2628
#[cfg(test)]

crates/core_arch/src/aarch64/neon/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#[rustfmt::skip]
66
mod generated;
77
#[rustfmt::skip]
8+
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
89
pub use self::generated::*;
910

1011
// FIXME: replace neon with asimd

0 commit comments

Comments
 (0)