| #![allow(clippy::option_unwrap_used, clippy::use_debug, clippy::print_stdout)] |
| target_arch = "powerpc64" |
| #[cfg(all(target_arch = "arm", any(target_os = "linux", target_os = "android")))] |
| let _ = is_arm_feature_detected!("neon"); |
| let _ = is_arm_feature_detected!("neon",); |
| any(target_os = "linux", target_os = "android") |
| let _ = is_aarch64_feature_detected!("fp"); |
| let _ = is_aarch64_feature_detected!("fp",); |
| #[cfg(all(target_arch = "powerpc", target_os = "linux"))] |
| let _ = is_powerpc_feature_detected!("altivec"); |
| let _ = is_powerpc_feature_detected!("altivec",); |
| #[cfg(all(target_arch = "powerpc64", target_os = "linux"))] |
| let _ = is_powerpc64_feature_detected!("altivec"); |
| let _ = is_powerpc64_feature_detected!("altivec",); |
| #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
| let _ = is_x86_feature_detected!("sse"); |
| let _ = is_x86_feature_detected!("sse",); |