We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff21e86 commit 6f44679Copy full SHA for 6f44679
library/core/src/num/f128.rs
@@ -1258,9 +1258,8 @@ impl f128 {
1258
min <= max,
1259
"min > max, or either was NaN",
1260
"min > max, or either was NaN. min = {min:?}, max = {max:?}",
1261
- // FIXME(f16_f128): Passed by-ref to avoid codegen crashes
1262
- min: &f128 = &min,
1263
- max: &f128 = &max,
+ min: f128,
+ max: f128,
1264
);
1265
1266
if self < min {
library/core/src/num/f16.rs
@@ -1235,9 +1235,8 @@ impl f16 {
1235
1236
1237
1238
1239
- min: &f16 = &min,
1240
- max: &f16 = &max,
+ min: f16,
+ max: f16,
1241
1242
1243
0 commit comments