Remove no longer necessary bootstrap guards (#975)

This commit is contained in:
tmiasko 2020-12-31 17:21:46 +01:00 committed by GitHub
parent 74c3d97374
commit bd91c5e9cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -675,27 +675,19 @@ pub use self::avx512cd::*;
mod avx512ifma;
pub use self::avx512ifma::*;
#[cfg(not(bootstrap))]
mod avx512bitalg;
#[cfg(not(bootstrap))]
pub use self::avx512bitalg::*;
#[cfg(not(bootstrap))]
mod avx512gfni;
#[cfg(not(bootstrap))]
pub use self::avx512gfni::*;
mod avx512vpopcntdq;
pub use self::avx512vpopcntdq::*;
#[cfg(not(bootstrap))]
mod avx512vaes;
#[cfg(not(bootstrap))]
pub use self::avx512vaes::*;
#[cfg(not(bootstrap))]
mod avx512vpclmulqdq;
#[cfg(not(bootstrap))]
pub use self::avx512vpclmulqdq::*;
mod bt;