Never build avx2 without avx2

This commit is contained in:
Henry de Valence 2017-11-20 15:44:34 -08:00
parent 97fe2f0bf4
commit 912fc5d412

View file

@ -29,6 +29,6 @@ pub mod u32;
pub mod u64;
/// Code using AVX2.
#[cfg(all(feature="yolocrypto", feature="avx2_backend"))]
#[cfg(all(target_feature="avx2", feature="yolocrypto", feature="avx2_backend"))]
pub mod avx2;