1 2 3 4 5 6 7
//! Advanced Bit Manipulation (ABM) instructions: software fallback. mod popcnt; mod lzcnt; pub use self::popcnt::*; pub use self::lzcnt::*;