[][src]Macro hektor::if_sse41

macro_rules! if_sse41 {
    ($yes:block else $no:block) => { ... };
}

Use this to make it simpler to handle the branch between using sse4.1 or not.

The SIMD path is automatically wrapped in unsafe. Also, the cargo feature debug_force_no_sse41 will cause this macro to pick the non-sse4.1 path even if the CPU supports it. Use this for easy testing of the fallback path.