mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-09 03:32:00 +00:00
* [mips64/msa] add add_a_b intrinsic * add make/file to mips64el's Dockerfile * add run-time detection support for mips64 * add mips64 build bot * generate docs for mips64 * fix linux test * cleanup rt-detection * support mips64/mips64el in stdsimd-test * support asserting instructions with in their name * better error msgs for the auxv_crate test * debug auxv on mips64 * override run-time detection on mips msa tests * remove unused #[macro_use] * try another MIPS cpu * detect default TARGET in simd-test-macro * use mips64r2-generic * disable unused function in mips tests * move msa to mips * remove mips from ci * split into mips and mips64 modules * add rt-detection for 32-bit mips * fmt * remove merge error * add norun build bots for mips * add -p to avoid changing the cwd * fixup * refactor run-time detection module
9 lines
150 B
Rust
9 lines
150 B
Rust
//! Other operating systems
|
|
|
|
use arch::detect::Feature;
|
|
|
|
/// Performs run-time feature detection.
|
|
pub fn check_for(_x: Feature) -> bool {
|
|
false
|
|
}
|