summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/cfg_if/detect/os/freebsd/mod.rs
blob: 1a5338a3555958c559a1dc247b7b64ea85f47be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Run-time feature detection on FreeBSD

mod auxvec;

cfg_if! {
    if #[cfg(target_arch = "aarch64")] {
        mod aarch64;
        pub use self::aarch64::check_for;
    } else if #[cfg(target_arch = "arm")] {
        mod arm;
        pub use self::arm::check_for;
    } else if #[cfg(target_arch = "powerpc64")] {
        mod powerpc;
        pub use self::powerpc::check_for;
    } else {
        use crate::arch::detect::Feature;
        /// Performs run-time feature detection.
        pub fn check_for(_x: Feature) -> bool {
            false
        }
    }
}