1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[macro_export]
#[unstable(feature = "stdsimd", issue = "27731")]
#[allow_internal_unstable(stdsimd_internal,stdsimd)]
macro_rules! is_sw64_feature_detected {
("msa") => {
cfg!(target_feature = "msa") ||
$crate::detect::check_for($crate::detect::Feature::msa)
};
($t:tt,) => {
is_sw64_feature_detected!($t);
};
($t:tt) => { compile_error!(concat!("unknown sw64 target feature: ", $t)) };
}
#[doc(hidden)]
#[allow(non_camel_case_types)]
#[repr(u8)]
#[unstable(feature = "stdsimd_internal", issue = "0")]
pub enum Feature {
msa,
}