From fdccdb197c4132d29894e9f27b7f71d35b1baec9 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Thu, 4 Jan 2024 14:35:45 +0000 Subject: [PATCH] Fix std_detect not being an unstable crate More fallout from #1486 --- crates/core_arch/src/lib.rs | 2 +- crates/std_detect/src/lib.rs | 6 +++--- crates/std_detect/tests/macro_trailing_commas.rs | 12 ++++++++++++ crates/std_detect/tests/x86-specific.rs | 2 ++ examples/connect5.rs | 5 +++-- examples/hex.rs | 4 ++++ 6 files changed, 25 insertions(+), 6 deletions(-) diff --git a/crates/core_arch/src/lib.rs b/crates/core_arch/src/lib.rs index bd4de67445..5dcd11fb68 100644 --- a/crates/core_arch/src/lib.rs +++ b/crates/core_arch/src/lib.rs @@ -35,7 +35,7 @@ inline_const, generic_arg_infer )] -#![cfg_attr(test, feature(test, abi_vectorcall))] +#![cfg_attr(test, feature(test, abi_vectorcall, stdarch_internal))] #![deny(clippy::missing_inline_in_public_items)] #![allow( clippy::identity_op, diff --git a/crates/std_detect/src/lib.rs b/crates/std_detect/src/lib.rs index 40c1aa4667..19cc021712 100644 --- a/crates/std_detect/src/lib.rs +++ b/crates/std_detect/src/lib.rs @@ -13,7 +13,7 @@ //! * `powerpc64`: [`is_powerpc64_feature_detected`] //! * `loongarch`: [`is_loongarch_feature_detected`] -#![stable(feature = "stdsimd", since = "1.27.0")] +#![unstable(feature = "stdarch_internal", issue = "none")] #![feature(staged_api, doc_cfg, allow_internal_unstable)] #![deny(rust_2018_idioms)] #![allow(clippy::shadow_reuse)] @@ -23,7 +23,7 @@ // Temporary hack: needed to build against toolchains from before the mass feature renaming. // Remove this as soon as the stdarch submodule is updated on nightly. #![allow(stable_features)] -#![feature(stdsimd)] +#![cfg_attr(not(feature = "rustc-dep-of-std"), feature(stdsimd))] #![cfg_attr( all( any(target_arch = "x86", target_arch = "x86_64"), @@ -42,5 +42,5 @@ extern crate std; extern crate alloc; #[doc(hidden)] -#[stable(feature = "stdsimd", since = "1.27.0")] +#[unstable(feature = "stdarch_internal", issue = "none")] pub mod detect; diff --git a/crates/std_detect/tests/macro_trailing_commas.rs b/crates/std_detect/tests/macro_trailing_commas.rs index 8304b225f5..d37629ec0a 100644 --- a/crates/std_detect/tests/macro_trailing_commas.rs +++ b/crates/std_detect/tests/macro_trailing_commas.rs @@ -1,3 +1,15 @@ +#![allow(internal_features)] +#![cfg_attr( + any( + target_arch = "arm", + target_arch = "aarch64", + target_arch = "x86", + target_arch = "x86_64", + target_arch = "powerpc", + target_arch = "powerpc64" + ), + feature(stdarch_internal) +)] #![cfg_attr(target_arch = "arm", feature(stdarch_arm_feature_detection))] #![cfg_attr(target_arch = "powerpc", feature(stdarch_powerpc_feature_detection))] #![cfg_attr(target_arch = "powerpc64", feature(stdarch_powerpc_feature_detection))] diff --git a/crates/std_detect/tests/x86-specific.rs b/crates/std_detect/tests/x86-specific.rs index 54bcab7b1e..1d8d8ba2ec 100644 --- a/crates/std_detect/tests/x86-specific.rs +++ b/crates/std_detect/tests/x86-specific.rs @@ -1,4 +1,6 @@ #![cfg(any(target_arch = "x86", target_arch = "x86_64"))] +#![allow(internal_features)] +#![feature(stdarch_internal)] extern crate cupid; #[macro_use] diff --git a/examples/connect5.rs b/examples/connect5.rs index 53e9b8124d..a569689fad 100644 --- a/examples/connect5.rs +++ b/examples/connect5.rs @@ -28,9 +28,10 @@ //! You should see a game self-playing. In the end of the game, it shows the average time for //! each move. +#![allow(internal_features)] #![feature(avx512_target_feature)] -#![cfg_attr(target_arch = "x86", feature(stdarch_x86_avx512))] -#![cfg_attr(target_arch = "x86_64", feature(stdarch_x86_avx512))] +#![cfg_attr(target_arch = "x86", feature(stdarch_x86_avx512, stdarch_internal))] +#![cfg_attr(target_arch = "x86_64", feature(stdarch_x86_avx512, stdarch_internal))] #![feature(stmt_expr_attributes)] use rand::seq::SliceRandom; diff --git a/examples/hex.rs b/examples/hex.rs index 490556e8bf..f95d6535a2 100644 --- a/examples/hex.rs +++ b/examples/hex.rs @@ -14,6 +14,10 @@ #![feature(wasm_target_feature)] #![cfg_attr(test, feature(test))] +#![cfg_attr( + any(target_arch = "x86", target_arch = "x86_64"), + feature(stdarch_internal) +)] #![allow( clippy::unwrap_used, clippy::print_stdout,