@@ -2995,8 +2995,7 @@ pub unsafe fn float_to_int_unchecked<Float: Copy, Int: Copy>(_value: Float) -> I
2995
2995
2996
2996
/// Float addition that allows optimizations based on algebraic rules.
2997
2997
///
2998
- /// The stabilized version of this intrinsic is
2999
- /// [`f32::add_algebraic`](../../std/primitive.f32.html#method.add_algebraic)
2998
+ /// Stabilized as [`f32::add_algebraic`] and [`f64::add_algebraic`].
3000
2999
#[ rustc_nounwind]
3001
3000
#[ rustc_intrinsic]
3002
3001
#[ rustc_intrinsic_must_be_overridden]
@@ -3006,8 +3005,7 @@ pub fn fadd_algebraic<T: Copy>(_a: T, _b: T) -> T {
3006
3005
3007
3006
/// Float subtraction that allows optimizations based on algebraic rules.
3008
3007
///
3009
- /// The stabilized version of this intrinsic is
3010
- /// [`f32::sub_algebraic`](../../std/primitive.f32.html#method.sub_algebraic)
3008
+ /// Stabilized as [`f32::sub_algebraic`] and [`f64::sub_algebraic`].
3011
3009
#[ rustc_nounwind]
3012
3010
#[ rustc_intrinsic]
3013
3011
#[ rustc_intrinsic_must_be_overridden]
@@ -3017,8 +3015,7 @@ pub fn fsub_algebraic<T: Copy>(_a: T, _b: T) -> T {
3017
3015
3018
3016
/// Float multiplication that allows optimizations based on algebraic rules.
3019
3017
///
3020
- /// The stabilized version of this intrinsic is
3021
- /// [`f32::mul_algebraic`](../../std/primitive.f32.html#method.mul_algebraic)
3018
+ /// Stabilized as [`f32::mul_algebraic`] and [`f64::mul_algebraic`].
3022
3019
#[ rustc_nounwind]
3023
3020
#[ rustc_intrinsic]
3024
3021
#[ rustc_intrinsic_must_be_overridden]
@@ -3028,8 +3025,7 @@ pub fn fmul_algebraic<T: Copy>(_a: T, _b: T) -> T {
3028
3025
3029
3026
/// Float division that allows optimizations based on algebraic rules.
3030
3027
///
3031
- /// The stabilized version of this intrinsic is
3032
- /// [`f32::div_algebraic`](../../std/primitive.f32.html#method.div_algebraic)
3028
+ /// Stabilized as [`f32::div_algebraic`] and [`f64::div_algebraic`].
3033
3029
#[ rustc_nounwind]
3034
3030
#[ rustc_intrinsic]
3035
3031
#[ rustc_intrinsic_must_be_overridden]
@@ -3039,8 +3035,7 @@ pub fn fdiv_algebraic<T: Copy>(_a: T, _b: T) -> T {
3039
3035
3040
3036
/// Float remainder that allows optimizations based on algebraic rules.
3041
3037
///
3042
- /// The stabilized version of this intrinsic is
3043
- /// [`f32::rem_algebraic`](../../std/primitive.f32.html#method.rem_algebraic)
3038
+ /// Stabilized as [`f32::rem_algebraic`] and [`f64::rem_algebraic`].
3044
3039
#[ rustc_nounwind]
3045
3040
#[ rustc_intrinsic]
3046
3041
#[ rustc_intrinsic_must_be_overridden]
0 commit comments