1//! Run-time feature detection on MIPS64.
2
3features! {
4 @TARGET: mips64;
5 @CFG: target_arch = "mips64";
6 @MACRO_NAME: is_mips64_feature_detected;
7 @MACRO_ATTRS:
8 /// Checks if `mips64` feature is enabled.
9 #[unstable(feature = "stdsimd", issue = "27731")]
10 @FEATURE: #[unstable(feature = "stdsimd", issue = "27731")] msa: "msa";
11 /// MIPS SIMD Architecture (MSA)
12}
13