Skip to content

Commit 8c7d1d3

Browse files
committed
Add basic trait impls for f16 and f128
Split off part of <#122470> so the compiler doesn't ICE because it expects primitives to have some minimal traits. Fixes <#123074>
1 parent a1b4991 commit 8c7d1d3

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

library/core/src/clone.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ mod impls {
227227
impl_clone! {
228228
usize u8 u16 u32 u64 u128
229229
isize i8 i16 i32 i64 i128
230-
f32 f64
230+
f16 f32 f64 f128
231231
bool char
232232
}
233233

library/core/src/cmp.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1486,7 +1486,7 @@ mod impls {
14861486
}
14871487

14881488
partial_eq_impl! {
1489-
bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64
1489+
bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128
14901490
}
14911491

14921492
macro_rules! eq_impl {
@@ -1539,7 +1539,7 @@ mod impls {
15391539
}
15401540
}
15411541

1542-
partial_ord_impl! { f32 f64 }
1542+
partial_ord_impl! { f16 f32 f64 f128 }
15431543

15441544
macro_rules! ord_impl {
15451545
($($t:ty)*) => ($(

library/core/src/default.rs

+2
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,7 @@ default_impl! { i32, 0, "Returns the default value of `0`" }
178178
default_impl! { i64, 0, "Returns the default value of `0`" }
179179
default_impl! { i128, 0, "Returns the default value of `0`" }
180180

181+
default_impl! { f16, 0.0f16, "Returns the default value of `0.0`" }
181182
default_impl! { f32, 0.0f32, "Returns the default value of `0.0`" }
182183
default_impl! { f64, 0.0f64, "Returns the default value of `0.0`" }
184+
default_impl! { f128, 0.0f128, "Returns the default value of `0.0`" }

library/core/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@
229229
#![feature(doc_notable_trait)]
230230
#![feature(effects)]
231231
#![feature(extern_types)]
232+
#![feature(f128)]
233+
#![feature(f16)]
232234
#![feature(freeze_impls)]
233235
#![feature(fundamental)]
234236
#![feature(generic_arg_infer)]

library/core/src/marker.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ marker_impls! {
422422
Copy for
423423
usize, u8, u16, u32, u64, u128,
424424
isize, i8, i16, i32, i64, i128,
425-
f32, f64,
425+
f16, f32, f64, f128,
426426
bool, char,
427427
{T: ?Sized} *const T,
428428
{T: ?Sized} *mut T,

0 commit comments

Comments
 (0)