@@ -2553,7 +2553,7 @@ pub unsafe fn _mm_load_sd(mem_addr: *const f64) -> __m128d {
25532553/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_loadh_pd)
25542554#[ inline]
25552555#[ target_feature( enable = "sse2" ) ]
2556- #[ cfg_attr( test, assert_instr( movhpd ) ) ]
2556+ #[ cfg_attr( test, assert_instr( movhps ) ) ]
25572557#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
25582558pub unsafe fn _mm_loadh_pd ( a : __m128d , mem_addr : * const f64 ) -> __m128d {
25592559 _mm_setr_pd ( simd_extract ( a, 0 ) , * mem_addr)
@@ -2566,7 +2566,7 @@ pub unsafe fn _mm_loadh_pd(a: __m128d, mem_addr: *const f64) -> __m128d {
25662566/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_loadl_pd)
25672567#[ inline]
25682568#[ target_feature( enable = "sse2" ) ]
2569- #[ cfg_attr( test, assert_instr( movlpd ) ) ]
2569+ #[ cfg_attr( test, assert_instr( movlps ) ) ]
25702570#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
25712571pub unsafe fn _mm_loadl_pd ( a : __m128d , mem_addr : * const f64 ) -> __m128d {
25722572 _mm_setr_pd ( * mem_addr, simd_extract ( a, 1 ) )
@@ -2675,7 +2675,7 @@ pub unsafe fn _mm_storer_pd(mem_addr: *mut f64, a: __m128d) {
26752675/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_storeh_pd)
26762676#[ inline]
26772677#[ target_feature( enable = "sse2" ) ]
2678- #[ cfg_attr( all( test, not( target_os = "windows" ) ) , assert_instr( movhpd ) ) ]
2678+ #[ cfg_attr( all( test, not( target_os = "windows" ) ) , assert_instr( movhps ) ) ]
26792679#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
26802680pub unsafe fn _mm_storeh_pd ( mem_addr : * mut f64 , a : __m128d ) {
26812681 * mem_addr = simd_extract ( a, 1 ) ;
@@ -2725,7 +2725,7 @@ pub unsafe fn _mm_load_pd1(mem_addr: *const f64) -> __m128d {
27252725/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_loadr_pd)
27262726#[ inline]
27272727#[ target_feature( enable = "sse2" ) ]
2728- #[ cfg_attr( test, assert_instr( movapd ) ) ]
2728+ #[ cfg_attr( test, assert_instr( movaps ) ) ]
27292729#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
27302730pub unsafe fn _mm_loadr_pd ( mem_addr : * const f64 ) -> __m128d {
27312731 let a = _mm_load_pd ( mem_addr) ;
@@ -2758,7 +2758,7 @@ pub unsafe fn _mm_loadu_pd(mem_addr: *const f64) -> __m128d {
27582758/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_shuffle_pd)
27592759#[ inline]
27602760#[ target_feature( enable = "sse2" ) ]
2761- #[ cfg_attr( test, assert_instr( shufpd , imm8 = 1 ) ) ]
2761+ #[ cfg_attr( test, assert_instr( shufps , imm8 = 1 ) ) ]
27622762#[ rustc_args_required_const( 2 ) ]
27632763#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
27642764pub unsafe fn _mm_shuffle_pd ( a : __m128d , b : __m128d , imm8 : i32 ) -> __m128d {
0 commit comments