File tree 7 files changed +7
-7
lines changed
crates/std_detect/src/detect/arch
7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 3
3
/// Checks if `aarch64` feature is enabled.
4
4
#[ macro_export]
5
5
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
6
- #[ allow_internal_unstable( stdsimd_internal) ]
6
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
7
7
macro_rules! is_aarch64_feature_detected {
8
8
( "neon" ) => {
9
9
// FIXME: this should be removed once we rename Aarch64 neon to asimd
Original file line number Diff line number Diff line change 3
3
/// Checks if `arm` feature is enabled.
4
4
#[ macro_export]
5
5
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
6
- #[ allow_internal_unstable( stdsimd_internal) ]
6
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
7
7
macro_rules! is_arm_feature_detected {
8
8
( "neon" ) => {
9
9
cfg!( target_feature = "neon" ) ||
Original file line number Diff line number Diff line change 3
3
/// Checks if `mips` feature is enabled.
4
4
#[ macro_export]
5
5
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
6
- #[ allow_internal_unstable( stdsimd_internal) ]
6
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
7
7
macro_rules! is_mips_feature_detected {
8
8
( "msa" ) => {
9
9
cfg!( target_feature = "msa" ) ||
Original file line number Diff line number Diff line change 3
3
/// Checks if `mips64` feature is enabled.
4
4
#[ macro_export]
5
5
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
6
- #[ allow_internal_unstable( stdsimd_internal) ]
6
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
7
7
macro_rules! is_mips64_feature_detected {
8
8
( "msa" ) => {
9
9
cfg!( target_feature = "msa" ) ||
Original file line number Diff line number Diff line change 3
3
/// Checks if `powerpc` feature is enabled.
4
4
#[ macro_export]
5
5
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
6
- #[ allow_internal_unstable( stdsimd_internal) ]
6
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
7
7
macro_rules! is_powerpc_feature_detected {
8
8
( "altivec" ) => {
9
9
cfg!( target_feature = "altivec" ) ||
Original file line number Diff line number Diff line change 3
3
/// Checks if `powerpc64` feature is enabled.
4
4
#[ macro_export]
5
5
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
6
- #[ allow_internal_unstable( stdsimd_internal) ]
6
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
7
7
macro_rules! is_powerpc64_feature_detected {
8
8
( "altivec" ) => {
9
9
cfg!( target_feature = "altivec" ) ||
Original file line number Diff line number Diff line change 79
79
/// [docs]: https://software.intel.com/sites/landingpage/IntrinsicsGuide
80
80
#[ macro_export]
81
81
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
82
- #[ allow_internal_unstable( stdsimd_internal) ]
82
+ #[ allow_internal_unstable( stdsimd_internal, stdsimd ) ]
83
83
macro_rules! is_x86_feature_detected {
84
84
( "aes" ) => {
85
85
cfg!( target_feature = "aes" ) || $crate:: detect:: check_for(
You can’t perform that action at this time.
0 commit comments