@@ -2995,7 +2995,7 @@ pub unsafe fn float_to_int_unchecked<Float: Copy, Int: Copy>(_value: Float) -> I
29952995
29962996/// Float addition that allows optimizations based on algebraic rules.
29972997///
2998- /// Stabilized as [`f32::add_algebraic`] and [`f64 ::add_algebraic`].
2998+ /// Stabilized as [`f16::add_algebraic`], [` f32::add_algebraic`], [`f64::add_algebraic`] and [`f128 ::add_algebraic`].
29992999#[ rustc_nounwind]
30003000#[ rustc_intrinsic]
30013001#[ rustc_intrinsic_must_be_overridden]
@@ -3005,7 +3005,7 @@ pub fn fadd_algebraic<T: Copy>(_a: T, _b: T) -> T {
30053005
30063006/// Float subtraction that allows optimizations based on algebraic rules.
30073007///
3008- /// Stabilized as [`f32::sub_algebraic`] and [`f64 ::sub_algebraic`].
3008+ /// Stabilized as [`f16::sub_algebraic`], [` f32::sub_algebraic`], [`f64::sub_algebraic`] and [`f128 ::sub_algebraic`].
30093009#[ rustc_nounwind]
30103010#[ rustc_intrinsic]
30113011#[ rustc_intrinsic_must_be_overridden]
@@ -3015,7 +3015,7 @@ pub fn fsub_algebraic<T: Copy>(_a: T, _b: T) -> T {
30153015
30163016/// Float multiplication that allows optimizations based on algebraic rules.
30173017///
3018- /// Stabilized as [`f32::mul_algebraic`] and [`f64 ::mul_algebraic`].
3018+ /// Stabilized as [`f16::mul_algebraic`], [` f32::mul_algebraic`], [`f64::mul_algebraic`] and [`f128 ::mul_algebraic`].
30193019#[ rustc_nounwind]
30203020#[ rustc_intrinsic]
30213021#[ rustc_intrinsic_must_be_overridden]
@@ -3025,7 +3025,7 @@ pub fn fmul_algebraic<T: Copy>(_a: T, _b: T) -> T {
30253025
30263026/// Float division that allows optimizations based on algebraic rules.
30273027///
3028- /// Stabilized as [`f32::div_algebraic`] and [`f64 ::div_algebraic`].
3028+ /// Stabilized as [`f16::div_algebraic`], [` f32::div_algebraic`], [`f64::div_algebraic`] and [`f128 ::div_algebraic`].
30293029#[ rustc_nounwind]
30303030#[ rustc_intrinsic]
30313031#[ rustc_intrinsic_must_be_overridden]
@@ -3035,7 +3035,7 @@ pub fn fdiv_algebraic<T: Copy>(_a: T, _b: T) -> T {
30353035
30363036/// Float remainder that allows optimizations based on algebraic rules.
30373037///
3038- /// Stabilized as [`f32::rem_algebraic`] and [`f64 ::rem_algebraic`].
3038+ /// Stabilized as [`f16::rem_algebraic`], [` f32::rem_algebraic`], [`f64::rem_algebraic`] and [`f128 ::rem_algebraic`].
30393039#[ rustc_nounwind]
30403040#[ rustc_intrinsic]
30413041#[ rustc_intrinsic_must_be_overridden]
0 commit comments