blob: 952b4baf0fda2af169eb1f29ed9a3275d97e67a0 [file] [log] [blame]
//! Run-time feature detection on FreeBSD
cfg_if! {
if #[cfg(target_arch = "aarch64")] {
mod aarch64;
pub use self::aarch64::check_for;
} else {
use crate::arch::detect::Feature;
/// Performs run-time feature detection.
pub fn check_for(_x: Feature) -> bool {
false
}
}
}