#[cfg(target_feature = "altivec")]
mod altivec;
#[cfg(target_feature = "altivec")]
pub use self::altivec::*;
mod vsx;
pub use self::vsx::*;
#[cfg(test)]
use stdsimd_test::assert_instr;
#[cfg_attr(test, assert_instr(trap))]
#[inline]
pub unsafe fn trap() -> ! {
::intrinsics::abort()
}