Fix build on 32-bit Intel (#405)

This commit is contained in:
Jakub Nabaglo 2021-12-21 12:00:33 -08:00 committed by GitHub
parent 04dce92a3a
commit 107ba3ab05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ impl<F: Field> Packable for F {
default type Packing = Self;
}
#[cfg(target_feature = "avx2")]
#[cfg(all(target_arch = "x86_64", target_feature = "avx2"))]
impl Packable for crate::field::goldilocks_field::GoldilocksField {
type Packing = crate::field::arch::x86_64::avx2_goldilocks_field::Avx2GoldilocksField;
}