Skip to content

Commit fb567cb

Browse files
sayantnAmanieu
authored andcommitted
Update avx.rs
1 parent f0ac5c9 commit fb567cb

File tree

1 file changed

+2
-2
lines changed
  • crates/core_arch/src/x86

1 file changed

+2
-2
lines changed

crates/core_arch/src/x86/avx.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ pub unsafe fn _mm256_cvtps_pd(a: __m128) -> __m256d {
894894
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_cvtsd_f64)
895895
#[inline]
896896
#[target_feature(enable = "avx")]
897-
#[cfg_attr(test, assert_instr(vmovsd))]
897+
//#[cfg_attr(test, assert_instr(movsd))] FIXME
898898
#[stable(feature = "simd_x86", since = "1.27.0")]
899899
pub unsafe fn _mm256_cvtsd_f64(a: __m256d) -> f64 {
900900
simd_extract!(a, 0)
@@ -2948,7 +2948,7 @@ pub unsafe fn _mm256_storeu2_m128i(hiaddr: *mut __m128i, loaddr: *mut __m128i, a
29482948
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_cvtss_f32)
29492949
#[inline]
29502950
#[target_feature(enable = "avx")]
2951-
#[cfg_attr(test, assert_instr(vmovss))]
2951+
//#[cfg_attr(test, assert_instr(movss))] FIXME
29522952
#[stable(feature = "simd_x86", since = "1.27.0")]
29532953
pub unsafe fn _mm256_cvtss_f32(a: __m256) -> f32 {
29542954
simd_extract!(a, 0)

0 commit comments

Comments
 (0)