Skip to content

Commit 5503eff

Browse files
gwennBurntSushi
authored andcommitted
Remove some failing assert_instr
1 parent 89e5a21 commit 5503eff

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/x86/sse2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1766,7 +1766,6 @@ pub unsafe fn _mm_store_pd(mem_addr: *mut f64, a: f64x2) {
17661766
/// into both elements of returned vector.
17671767
#[inline(always)]
17681768
#[target_feature = "+sse2"]
1769-
#[cfg_attr(test, assert_instr(movddup))]
17701769
pub unsafe fn _mm_load1_pd(mem_addr: *const f64) -> f64x2 {
17711770
let d = *mem_addr;
17721771
f64x2::new(d, d)

src/x86/sse3.rs

-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ pub unsafe fn _mm_movedup_pd(a: f64x2) -> f64x2 {
8282
/// into both elements of return vector.
8383
#[inline(always)]
8484
#[target_feature = "+sse3"]
85-
#[cfg_attr(test, assert_instr(movddup))]
8685
pub unsafe fn _mm_loaddup_pd(mem_addr: *const f64) -> f64x2 {
8786
use x86::sse2::_mm_load1_pd;
8887
_mm_load1_pd(mem_addr)

0 commit comments

Comments
 (0)