@@ -29,6 +29,7 @@ extern "unadjusted" {
29
29
#[ inline]
30
30
#[ target_feature( enable = "f16c" ) ]
31
31
#[ cfg_attr( test, assert_instr( "vcvtph2ps" ) ) ]
32
+ #[ stable( feature = "x86_f16c_intrinsics" , since = "1.68.0" ) ]
32
33
pub unsafe fn _mm_cvtph_ps ( a : __m128i ) -> __m128 {
33
34
transmute ( llvm_vcvtph2ps_128 ( transmute ( a) ) )
34
35
}
@@ -38,6 +39,7 @@ pub unsafe fn _mm_cvtph_ps(a: __m128i) -> __m128 {
38
39
#[ inline]
39
40
#[ target_feature( enable = "f16c" ) ]
40
41
#[ cfg_attr( test, assert_instr( "vcvtph2ps" ) ) ]
42
+ #[ stable( feature = "x86_f16c_intrinsics" , since = "1.68.0" ) ]
41
43
pub unsafe fn _mm256_cvtph_ps ( a : __m128i ) -> __m256 {
42
44
transmute ( llvm_vcvtph2ps_256 ( transmute ( a) ) )
43
45
}
@@ -57,6 +59,7 @@ pub unsafe fn _mm256_cvtph_ps(a: __m128i) -> __m256 {
57
59
#[ target_feature( enable = "f16c" ) ]
58
60
#[ cfg_attr( test, assert_instr( "vcvtps2ph" , IMM_ROUNDING = 0 ) ) ]
59
61
#[ rustc_legacy_const_generics( 1 ) ]
62
+ #[ stable( feature = "x86_f16c_intrinsics" , since = "1.68.0" ) ]
60
63
pub unsafe fn _mm_cvtps_ph < const IMM_ROUNDING : i32 > ( a : __m128 ) -> __m128i {
61
64
static_assert_uimm_bits ! ( IMM_ROUNDING , 3 ) ;
62
65
let a = a. as_f32x4 ( ) ;
@@ -78,6 +81,7 @@ pub unsafe fn _mm_cvtps_ph<const IMM_ROUNDING: i32>(a: __m128) -> __m128i {
78
81
#[ target_feature( enable = "f16c" ) ]
79
82
#[ cfg_attr( test, assert_instr( "vcvtps2ph" , IMM_ROUNDING = 0 ) ) ]
80
83
#[ rustc_legacy_const_generics( 1 ) ]
84
+ #[ stable( feature = "x86_f16c_intrinsics" , since = "1.68.0" ) ]
81
85
pub unsafe fn _mm256_cvtps_ph < const IMM_ROUNDING : i32 > ( a : __m256 ) -> __m128i {
82
86
static_assert_uimm_bits ! ( IMM_ROUNDING , 3 ) ;
83
87
let a = a. as_f32x8 ( ) ;
0 commit comments