@@ -2553,7 +2553,7 @@ pub unsafe fn _mm_load_sd(mem_addr: *const f64) -> __m128d {
2553
2553
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_loadh_pd)
2554
2554
#[ inline]
2555
2555
#[ target_feature( enable = "sse2" ) ]
2556
- #[ cfg_attr( test, assert_instr( movhpd ) ) ]
2556
+ #[ cfg_attr( test, assert_instr( movhps ) ) ]
2557
2557
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
2558
2558
pub unsafe fn _mm_loadh_pd ( a : __m128d , mem_addr : * const f64 ) -> __m128d {
2559
2559
_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 {
2566
2566
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_loadl_pd)
2567
2567
#[ inline]
2568
2568
#[ target_feature( enable = "sse2" ) ]
2569
- #[ cfg_attr( test, assert_instr( movlpd ) ) ]
2569
+ #[ cfg_attr( test, assert_instr( movlps ) ) ]
2570
2570
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
2571
2571
pub unsafe fn _mm_loadl_pd ( a : __m128d , mem_addr : * const f64 ) -> __m128d {
2572
2572
_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) {
2675
2675
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_storeh_pd)
2676
2676
#[ inline]
2677
2677
#[ 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 ) ) ]
2679
2679
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
2680
2680
pub unsafe fn _mm_storeh_pd ( mem_addr : * mut f64 , a : __m128d ) {
2681
2681
* mem_addr = simd_extract ( a, 1 ) ;
@@ -2725,7 +2725,7 @@ pub unsafe fn _mm_load_pd1(mem_addr: *const f64) -> __m128d {
2725
2725
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_loadr_pd)
2726
2726
#[ inline]
2727
2727
#[ target_feature( enable = "sse2" ) ]
2728
- #[ cfg_attr( test, assert_instr( movapd ) ) ]
2728
+ #[ cfg_attr( test, assert_instr( movaps ) ) ]
2729
2729
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
2730
2730
pub unsafe fn _mm_loadr_pd ( mem_addr : * const f64 ) -> __m128d {
2731
2731
let a = _mm_load_pd ( mem_addr) ;
@@ -2758,7 +2758,7 @@ pub unsafe fn _mm_loadu_pd(mem_addr: *const f64) -> __m128d {
2758
2758
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_shuffle_pd)
2759
2759
#[ inline]
2760
2760
#[ target_feature( enable = "sse2" ) ]
2761
- #[ cfg_attr( test, assert_instr( shufpd , imm8 = 1 ) ) ]
2761
+ #[ cfg_attr( test, assert_instr( shufps , imm8 = 1 ) ) ]
2762
2762
#[ rustc_args_required_const( 2 ) ]
2763
2763
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
2764
2764
pub unsafe fn _mm_shuffle_pd ( a : __m128d , b : __m128d , imm8 : i32 ) -> __m128d {
0 commit comments