Fix SIMD conditional compilation

This commit is contained in:
Patrick Walton 2019-01-12 20:50:11 -08:00
parent 832e79db94
commit e7a50f2abb
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ mod scalar {
}
}
#[cfg(any(not(feature = "pf-no-simd"), target_arch = "x86", target_arch = "x86_64"))]
#[cfg(all(not(feature = "pf-no-simd"), any(target_arch = "x86", target_arch = "x86_64")))]
mod x86 {
use std::arch::x86_64::{self, __m128, __m128d, __m128i};
use std::cmp::PartialEq;