@@ -7925,7 +7925,7 @@ pub fn vcvth_f16_u64(a: u64) -> f16 {
7925
7925
#[unstable(feature = "stdarch_neon_f16", issue = "136306")]
7926
7926
pub fn vcvth_n_f16_s16<const N: i32>(a: i16) -> f16 {
7927
7927
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)
7929
7929
}
7930
7930
#[doc = "Fixed-point convert to floating-point"]
7931
7931
#[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 {
7972
7972
#[unstable(feature = "stdarch_neon_f16", issue = "136306")]
7973
7973
pub fn vcvth_n_f16_u16<const N: i32>(a: u16) -> f16 {
7974
7974
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)
7976
7976
}
7977
7977
#[doc = "Fixed-point convert to floating-point"]
7978
7978
#[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 {
24082
24082
#[doc = "Reciprocal square-root estimate."]
24083
24083
#[doc = "[Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vrsqrteh_f16)"]
24084
24084
#[inline]
24085
- #[target_feature(enable = "neon,fp16")]
24086
24085
#[cfg_attr(test, assert_instr(frsqrte))]
24087
24086
#[target_feature(enable = "neon,fp16")]
24088
24087
#[unstable(feature = "stdarch_neon_f16", issue = "136306")]
0 commit comments