378
378
#![ feature( get_many_mut) ]
379
379
#![ feature( lazy_cell) ]
380
380
#![ feature( log_syntax) ]
381
- #![ feature( stdsimd) ]
382
381
#![ feature( test) ]
383
382
#![ feature( trace_macros) ]
384
383
// tidy-alphabetical-end
@@ -607,7 +606,7 @@ pub mod task {
607
606
#[ doc = include_str ! ( "../../stdarch/crates/core_arch/src/core_arch_docs.md" ) ]
608
607
#[ stable( feature = "simd_arch" , since = "1.27.0" ) ]
609
608
pub mod arch {
610
- #[ stable( feature = "simd_arch " , since = "1.27.0" ) ]
609
+ #[ stable( feature = "stdsimd " , since = "1.27.0" ) ]
611
610
// The `no_inline`-attribute is required to make the documentation of all
612
611
// targets available.
613
612
// See https://github.com/rust-lang/rust/pull/57808#issuecomment-457390549 for
@@ -617,13 +616,16 @@ pub mod arch {
617
616
618
617
#[ stable( feature = "simd_aarch64" , since = "1.60.0" ) ]
619
618
pub use std_detect:: is_aarch64_feature_detected;
619
+ #[ unstable( feature = "stdarch_arm_feature_detection" , issue = "111190" ) ]
620
+ pub use std_detect:: is_arm_feature_detected;
621
+ #[ unstable( feature = "is_riscv_feature_detected" , issue = "111192" ) ]
622
+ pub use std_detect:: is_riscv_feature_detected;
620
623
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
621
624
pub use std_detect:: is_x86_feature_detected;
622
- #[ unstable( feature = "stdsimd" , issue = "48556" ) ]
623
- pub use std_detect:: {
624
- is_arm_feature_detected, is_mips64_feature_detected, is_mips_feature_detected,
625
- is_powerpc64_feature_detected, is_powerpc_feature_detected, is_riscv_feature_detected,
626
- } ;
625
+ #[ unstable( feature = "stdarch_mips_feature_detection" , issue = "111188" ) ]
626
+ pub use std_detect:: { is_mips64_feature_detected, is_mips_feature_detected} ;
627
+ #[ unstable( feature = "stdarch_powerpc_feature_detection" , issue = "111191" ) ]
628
+ pub use std_detect:: { is_powerpc64_feature_detected, is_powerpc_feature_detected} ;
627
629
}
628
630
629
631
// This was stabilized in the crate root so we have to keep it there.
0 commit comments