Skip to content

Commit ac5e448

Browse files
committed
resolve : issue 154034
resolve : mark repr_simd as internal resolve : move repr_simd resolve : move repr_simd under linkage resolve : move repr_simd under pattern_types resolve : mark repr_simd as internal resolve : move repr_simd resolve : move repr_simd under linkage resolve : move repr_simd under pattern_types
1 parent 212b0d4 commit ac5e448

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

compiler/rustc_feature/src/unstable.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,8 @@ declare_features! (
303303
(internal, panic_runtime, "1.10.0", Some(32837)),
304304
/// Allows using pattern types.
305305
(internal, pattern_types, "1.79.0", Some(123646)),
306+
/// Allows `repr(simd)` and importing the various simd intrinsics.
307+
(internal, repr_simd, "1.4.0", Some(27731)),
306308
/// Allows using compiler's own crates.
307309
(unstable, rustc_private, "1.0.0", Some(27812)),
308310
/// Allows using internal rustdoc features like `doc(keyword)`.
@@ -646,8 +648,6 @@ declare_features! (
646648
(incomplete, ref_pat_eat_one_layer_2024_structural, "1.81.0", Some(123076)),
647649
/// Allows using the `#[register_tool]` attribute.
648650
(unstable, register_tool, "1.41.0", Some(66079)),
649-
/// Allows `repr(simd)` and importing the various simd intrinsics.
650-
(unstable, repr_simd, "1.4.0", Some(27731)),
651651
/// Allows bounding the return type of AFIT/RPITIT.
652652
(unstable, return_type_notation, "1.70.0", Some(109417)),
653653
/// Target features on riscv.

library/alloctests/benches/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// This is marked as `test = true` and hence picked up by `./x miri`, but that would be too slow.
22
#![cfg(not(miri))]
3+
#![allow(internal_features)]
34
#![feature(iter_next_chunk)]
45
#![feature(repr_simd)]
56
#![feature(slice_partition_dedup)]

0 commit comments

Comments
 (0)