summaryrefslogtreecommitdiffstats
path: root/vendor/memchr/src/memmem/prefilter/x86/mod.rs
blob: 91381e51629cf78fde53089109a8637165d2d682 (plain)
1
2
3
4
5
// We only use AVX when we can detect at runtime whether it's available, which
// requires std.
#[cfg(feature = "std")]
pub(crate) mod avx;
pub(crate) mod sse;