1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub use self::imp::*; #[cfg(all( regex_runtime_teddy_avx2, target_arch = "x86_64", ))] mod imp; #[cfg(not(all( regex_runtime_teddy_avx2, target_arch = "x86_64", )))] #[path = "fallback.rs"] mod imp;
1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub use self::imp::*; #[cfg(all( regex_runtime_teddy_avx2, target_arch = "x86_64", ))] mod imp; #[cfg(not(all( regex_runtime_teddy_avx2, target_arch = "x86_64", )))] #[path = "fallback.rs"] mod imp;