@@ -7925,7 +7925,7 @@ pub fn vcvth_f16_u64(a: u64) -> f16 {
79257925#[unstable(feature = "stdarch_neon_f16", issue = "136306")]
79267926pub fn vcvth_n_f16_s16<const N: i32>(a: i16) -> f16 {
79277927 static_assert!(N >= 1 && N <= 16);
7928- vcvth_n_f16_s32::<N>(a as i32) as f16
7928+ vcvth_n_f16_s32::<N>(a as i32)
79297929}
79307930#[doc = "Fixed-point convert to floating-point"]
79317931#[doc = "[Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vcvth_n_f16_s32)"]
@@ -7972,7 +7972,7 @@ pub fn vcvth_n_f16_s64<const N: i32>(a: i64) -> f16 {
79727972#[unstable(feature = "stdarch_neon_f16", issue = "136306")]
79737973pub fn vcvth_n_f16_u16<const N: i32>(a: u16) -> f16 {
79747974 static_assert!(N >= 1 && N <= 16);
7975- vcvth_n_f16_u32::<N>(a as u32) as f16
7975+ vcvth_n_f16_u32::<N>(a as u32)
79767976}
79777977#[doc = "Fixed-point convert to floating-point"]
79787978#[doc = "[Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vcvth_n_f16_u32)"]
@@ -24082,7 +24082,6 @@ pub fn vrsqrtes_f32(a: f32) -> f32 {
2408224082#[doc = "Reciprocal square-root estimate."]
2408324083#[doc = "[Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vrsqrteh_f16)"]
2408424084#[inline]
24085- #[target_feature(enable = "neon,fp16")]
2408624085#[cfg_attr(test, assert_instr(frsqrte))]
2408724086#[target_feature(enable = "neon,fp16")]
2408824087#[unstable(feature = "stdarch_neon_f16", issue = "136306")]
0 commit comments