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