Skip to content

Commit 40d1a05

Browse files
committed
Update feature names for new stdarch
1 parent bf3dfdd commit 40d1a05

File tree

7 files changed

+22
-20
lines changed

7 files changed

+22
-20
lines changed

library/core/src/lib.rs

-4
Original file line numberDiff line numberDiff line change
@@ -425,10 +425,6 @@ pub mod primitive;
425425
deprecated_in_future
426426
)]
427427
#[allow(rustdoc::bare_urls)]
428-
// FIXME: This annotation should be moved into rust-lang/stdarch after clashing_extern_declarations is
429-
// merged. It currently cannot because bootstrap fails as the lint hasn't been defined yet.
430-
#[allow(clashing_extern_declarations)]
431-
#[unstable(feature = "stdsimd", issue = "48556")]
432428
mod core_arch;
433429

434430
#[stable(feature = "simd_arch", since = "1.27.0")]

library/std/src/lib.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,6 @@
381381
#![feature(get_many_mut)]
382382
#![feature(lazy_cell)]
383383
#![feature(log_syntax)]
384-
#![feature(stdsimd)]
385384
#![feature(test)]
386385
#![feature(trace_macros)]
387386
// tidy-alphabetical-end
@@ -620,13 +619,16 @@ pub mod arch {
620619

621620
#[stable(feature = "simd_aarch64", since = "1.60.0")]
622621
pub use std_detect::is_aarch64_feature_detected;
622+
#[unstable(feature = "stdarch_arm_feature_detection", issue = "111190")]
623+
pub use std_detect::is_arm_feature_detected;
624+
#[unstable(feature = "is_riscv_feature_detected", issue = "111192")]
625+
pub use std_detect::is_riscv_feature_detected;
623626
#[stable(feature = "simd_x86", since = "1.27.0")]
624627
pub use std_detect::is_x86_feature_detected;
625-
#[unstable(feature = "stdsimd", issue = "48556")]
626-
pub use std_detect::{
627-
is_arm_feature_detected, is_mips64_feature_detected, is_mips_feature_detected,
628-
is_powerpc64_feature_detected, is_powerpc_feature_detected, is_riscv_feature_detected,
629-
};
628+
#[unstable(feature = "stdarch_mips_feature_detection", issue = "111188")]
629+
pub use std_detect::{is_mips64_feature_detected, is_mips_feature_detected};
630+
#[unstable(feature = "stdarch_powerpc_feature_detection", issue = "111191")]
631+
pub use std_detect::{is_powerpc64_feature_detected, is_powerpc_feature_detected};
630632
}
631633

632634
// This was stabilized in the crate root so we have to keep it there.

library/std/tests/run-time-detect.rs

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
//! These tests just check that the macros are available in std.
22
33
#![cfg_attr(
4-
any(
5-
all(target_arch = "arm", any(target_os = "linux", target_os = "android")),
6-
all(target_arch = "powerpc", target_os = "linux"),
7-
all(target_arch = "powerpc64", target_os = "linux"),
8-
),
9-
feature(stdsimd)
4+
all(target_arch = "arm", any(target_os = "linux", target_os = "android")),
5+
feature(stdarch_arm_feature_detection)
6+
)]
7+
#![cfg_attr(
8+
all(target_arch = "powerpc", target_os = "linux"),
9+
feature(stdarch_powerpc_feature_detection)
10+
)]
11+
#![cfg_attr(
12+
all(target_arch = "powerpc64", target_os = "linux"),
13+
feature(stdarch_powerpc_feature_detection)
1014
)]
1115

1216
#[test]

src/tools/miri/tests/pass/intrinsics-x86-aes-vaes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//@ignore-target-wasm32
1010
//@compile-flags: -C target-feature=+aes,+vaes,+avx512f
1111

12-
#![feature(avx512_target_feature, stdsimd)]
12+
#![feature(avx512_target_feature, stdarch_x86_avx512)]
1313

1414
use core::mem::transmute;
1515
#[cfg(target_arch = "x86")]

src/tools/miri/tests/pass/intrinsics-x86-avx512.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//@compile-flags: -C target-feature=+avx512f,+avx512vl,+avx512bitalg,+avx512vpopcntdq
1111

1212
#![feature(avx512_target_feature)]
13-
#![feature(stdsimd)]
13+
#![feature(stdarch_x86_avx512)]
1414

1515
#[cfg(target_arch = "x86")]
1616
use std::arch::x86::*;

tests/ui/asm/aarch64/type-check-3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// only-aarch64
22
// compile-flags: -C target-feature=+neon
33

4-
#![feature(repr_simd, stdsimd, asm_const)]
4+
#![feature(repr_simd, asm_const)]
55

66
use std::arch::aarch64::float64x2_t;
77
use std::arch::{asm, global_asm};

tests/ui/asm/aarch64/type-check-4.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// only-aarch64
22
// compile-flags: -C target-feature=+neon
33

4-
#![feature(repr_simd, stdsimd, asm_const)]
4+
#![feature(repr_simd, asm_const)]
55

66
use std::arch::aarch64::float64x2_t;
77
use std::arch::{asm, global_asm};

0 commit comments

Comments
 (0)