File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ impl f32 {
270270 #[ inline]
271271 #[ rustc_const_unstable( feature = "float_mul_add_relaxed" , issue = "151770" ) ]
272272 pub const fn mul_add_relaxed ( self , a : f32 , b : f32 ) -> f32 {
273- core:: f32 :: mul_add_relaxed ( self , a, b)
273+ core:: intrinsics :: fmuladdf32 ( self , a, b)
274274 }
275275
276276 /// Calculates Euclidean division, the matching method for `rem_euclid`.
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ impl f64 {
270270 #[ inline]
271271 #[ rustc_const_unstable( feature = "float_mul_add_relaxed" , issue = "151770" ) ]
272272 pub const fn mul_add_relaxed ( self , a : f64 , b : f64 ) -> f64 {
273- core:: f64 :: mul_add_relaxed ( self , a, b)
273+ core:: intrinsics :: fmuladdf64 ( self , a, b)
274274 }
275275
276276 /// Calculates Euclidean division, the matching method for `rem_euclid`.
You can’t perform that action at this time.
0 commit comments