Remove some failing assert_instr

This commit is contained in:
gwenn 2017-09-30 14:56:12 +02:00 committed by Andrew Gallant
parent f0f5108a98
commit b6a3bc42b3
2 changed files with 0 additions and 2 deletions

View file

@ -1766,7 +1766,6 @@ pub unsafe fn _mm_store_pd(mem_addr: *mut f64, a: f64x2) {
/// into both elements of returned vector.
#[inline(always)]
#[target_feature = "+sse2"]
#[cfg_attr(test, assert_instr(movddup))]
pub unsafe fn _mm_load1_pd(mem_addr: *const f64) -> f64x2 {
let d = *mem_addr;
f64x2::new(d, d)

View file

@ -82,7 +82,6 @@ pub unsafe fn _mm_movedup_pd(a: f64x2) -> f64x2 {
/// into both elements of return vector.
#[inline(always)]
#[target_feature = "+sse3"]
#[cfg_attr(test, assert_instr(movddup))]
pub unsafe fn _mm_loaddup_pd(mem_addr: *const f64) -> f64x2 {
use x86::sse2::_mm_load1_pd;
_mm_load1_pd(mem_addr)