Skip to content

Commit c788415

Browse files
committed
Stop using unsized_const_parameters in core/std
1 parent 6242470 commit c788415

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

core/src/intrinsics/simd.rs

-12
Original file line numberDiff line numberDiff line change
@@ -243,18 +243,6 @@ extern "rust-intrinsic" {
243243
#[rustc_nounwind]
244244
pub fn simd_shuffle<T, U, V>(x: T, y: T, idx: U) -> V;
245245

246-
/// Shuffle two vectors by const indices.
247-
///
248-
/// `T` must be a vector.
249-
///
250-
/// `U` must be a vector with the same element type as `T` and the same length as `IDX`.
251-
///
252-
/// Returns a new vector such that element `i` is selected from `xy[IDX[i]]`, where `xy`
253-
/// is the concatenation of `x` and `y`. It is a compile-time error if `IDX[i]` is out-of-bounds
254-
/// of `xy`.
255-
#[rustc_nounwind]
256-
pub fn simd_shuffle_generic<T, U, const IDX: &'static [u32]>(x: T, y: T) -> U;
257-
258246
/// Read a vector of pointers.
259247
///
260248
/// `T` must be a vector.

core/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@
249249
#![feature(transparent_unions)]
250250
#![feature(try_blocks)]
251251
#![feature(unboxed_closures)]
252-
#![feature(unsized_const_params)]
253252
#![feature(unsized_fn_params)]
254253
#![feature(with_negative_coherence)]
255254
// tidy-alphabetical-end

core/src/marker.rs

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ use crate::hash::Hasher;
4242
/// }
4343
/// ```
4444
#[unstable(feature = "internal_impls_macro", issue = "none")]
45+
// Allow implementations of `UnsizedConstParamTy` even though std cannot use that feature.
46+
#[allow_internal_unstable(unsized_const_params)]
4547
macro marker_impls {
4648
( $(#[$($meta:tt)*])* $Trait:ident for $({$($bounds:tt)*})? $T:ty $(, $($rest:tt)*)? ) => {
4749
$(#[$($meta)*])* impl< $($($bounds)*)? > $Trait for $T {}

0 commit comments

Comments
 (0)