Revert "Put basic impls for f16 and f128 behind cfg(not(bootstrap))"

This reverts commit 049a917535.

The resolution to <https://github.com/rust-lang/rust/issues/123282> is
that the `f16`/`f128` regression in the beta compiler was fixable
without a revert, so the commit adding `#[cfg(not(bootstrap))]` is no
longer useful (added in
<https://github.com/rust-lang/rust/pull/123390>).

Revert this commit because not having these basic impls bootstrap-gated
simplifies everything else that uses them.
This commit is contained in:
Trevor Gross
2024-04-04 21:18:24 -05:00
parent 93c131eba0
commit 88bcc79f31
4 changed files with 6 additions and 21 deletions

View File

@@ -227,13 +227,10 @@ mod impls {
impl_clone! {
usize u8 u16 u32 u64 u128
isize i8 i16 i32 i64 i128
f32 f64
f16 f32 f64 f128
bool char
}
#[cfg(not(bootstrap))]
impl_clone! { f16 f128 }
#[unstable(feature = "never_type", issue = "35121")]
impl Clone for ! {
#[inline]