Skip to content

Commit 9a60697

Browse files
committed
Try to fix upstream
1 parent 00f88e7 commit 9a60697

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

crates/std_detect/src/detect/arch/aarch64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Checks if `aarch64` feature is enabled.
44
#[macro_export]
55
#[unstable(feature = "stdsimd", issue = "27731")]
6-
#[allow_internal_unstable(stdsimd_internal)]
6+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
77
macro_rules! is_aarch64_feature_detected {
88
("neon") => {
99
// FIXME: this should be removed once we rename Aarch64 neon to asimd

crates/std_detect/src/detect/arch/arm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Checks if `arm` feature is enabled.
44
#[macro_export]
55
#[unstable(feature = "stdsimd", issue = "27731")]
6-
#[allow_internal_unstable(stdsimd_internal)]
6+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
77
macro_rules! is_arm_feature_detected {
88
("neon") => {
99
cfg!(target_feature = "neon") ||

crates/std_detect/src/detect/arch/mips.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Checks if `mips` feature is enabled.
44
#[macro_export]
55
#[unstable(feature = "stdsimd", issue = "27731")]
6-
#[allow_internal_unstable(stdsimd_internal)]
6+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
77
macro_rules! is_mips_feature_detected {
88
("msa") => {
99
cfg!(target_feature = "msa") ||

crates/std_detect/src/detect/arch/mips64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Checks if `mips64` feature is enabled.
44
#[macro_export]
55
#[unstable(feature = "stdsimd", issue = "27731")]
6-
#[allow_internal_unstable(stdsimd_internal)]
6+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
77
macro_rules! is_mips64_feature_detected {
88
("msa") => {
99
cfg!(target_feature = "msa") ||

crates/std_detect/src/detect/arch/powerpc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Checks if `powerpc` feature is enabled.
44
#[macro_export]
55
#[unstable(feature = "stdsimd", issue = "27731")]
6-
#[allow_internal_unstable(stdsimd_internal)]
6+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
77
macro_rules! is_powerpc_feature_detected {
88
("altivec") => {
99
cfg!(target_feature = "altivec") ||

crates/std_detect/src/detect/arch/powerpc64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Checks if `powerpc64` feature is enabled.
44
#[macro_export]
55
#[unstable(feature = "stdsimd", issue = "27731")]
6-
#[allow_internal_unstable(stdsimd_internal)]
6+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
77
macro_rules! is_powerpc64_feature_detected {
88
("altivec") => {
99
cfg!(target_feature = "altivec") ||

crates/std_detect/src/detect/arch/x86.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
/// [docs]: https://software.intel.com/sites/landingpage/IntrinsicsGuide
8080
#[macro_export]
8181
#[stable(feature = "simd_x86", since = "1.27.0")]
82-
#[allow_internal_unstable(stdsimd_internal)]
82+
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
8383
macro_rules! is_x86_feature_detected {
8484
("aes") => {
8585
cfg!(target_feature = "aes") || $crate::detect::check_for(

0 commit comments

Comments
 (0)