blob: d135cd95de2827d842bebfa9db05c22e9de1f617 [file] [log] [blame]
//! Run-time feature detection on PowerPC.
features! {
@TARGET: powerpc;
@CFG: target_arch = "powerpc";
@MACRO_NAME: is_powerpc_feature_detected;
@MACRO_ATTRS:
/// Checks if `powerpc` feature is enabled.
#[unstable(feature = "stdsimd", issue = "27731")]
@FEATURE: #[unstable(feature = "stdsimd", issue = "27731")] altivec: "altivec";
/// Altivec
@FEATURE: #[unstable(feature = "stdsimd", issue = "27731")] vsx: "vsx";
/// VSX
@FEATURE: #[unstable(feature = "stdsimd", issue = "27731")] power8: "power8";
/// Power8
}