rust/tests/ui/target-feature/gate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
913 B
Rust
Raw Normal View History

// ignore-arm
// ignore-aarch64
// ignore-wasm
// ignore-emscripten
2018-07-31 04:01:27 -05:00
// ignore-mips
// ignore-mips64
// ignore-powerpc
// ignore-powerpc64
// ignore-riscv64
// ignore-sparc
// ignore-sparc64
// ignore-s390x
2023-04-14 04:42:08 -05:00
// ignore-loongarch64
// gate-test-sse4a_target_feature
// gate-test-powerpc_target_feature
// gate-test-avx512_target_feature
// gate-test-tbm_target_feature
// gate-test-arm_target_feature
// gate-test-hexagon_target_feature
// gate-test-mips_target_feature
2018-08-07 19:10:06 -05:00
// gate-test-wasm_target_feature
// gate-test-adx_target_feature
// gate-test-cmpxchg16b_target_feature
2019-01-30 07:27:55 -06:00
// gate-test-movbe_target_feature
2019-04-17 18:38:54 -05:00
// gate-test-rtm_target_feature
// gate-test-f16c_target_feature
2020-03-01 03:52:04 -06:00
// gate-test-riscv_target_feature
// gate-test-ermsb_target_feature
2021-05-29 07:58:04 -05:00
// gate-test-bpf_target_feature
2022-02-10 10:43:45 -06:00
// gate-test-aarch64_ver_target_feature
#[target_feature(enable = "avx512bw")]
//~^ ERROR: currently unstable
2020-09-03 13:14:15 -05:00
unsafe fn foo() {}
fn main() {}