]> git.lizzy.rs Git - rust.git/blob - tests/ui/target-feature/gate.rs
Make `output_filenames` a real query
[rust.git] / tests / ui / target-feature / gate.rs
1 // ignore-arm
2 // ignore-aarch64
3 // ignore-wasm
4 // ignore-emscripten
5 // ignore-mips
6 // ignore-mips64
7 // ignore-powerpc
8 // ignore-powerpc64
9 // ignore-powerpc64le
10 // ignore-riscv64
11 // ignore-sparc
12 // ignore-sparc64
13 // ignore-s390x
14 // gate-test-sse4a_target_feature
15 // gate-test-powerpc_target_feature
16 // gate-test-avx512_target_feature
17 // gate-test-tbm_target_feature
18 // gate-test-arm_target_feature
19 // gate-test-hexagon_target_feature
20 // gate-test-mips_target_feature
21 // gate-test-wasm_target_feature
22 // gate-test-adx_target_feature
23 // gate-test-cmpxchg16b_target_feature
24 // gate-test-movbe_target_feature
25 // gate-test-rtm_target_feature
26 // gate-test-f16c_target_feature
27 // gate-test-riscv_target_feature
28 // gate-test-ermsb_target_feature
29 // gate-test-bpf_target_feature
30 // gate-test-aarch64_ver_target_feature
31
32 #[target_feature(enable = "avx512bw")]
33 //~^ ERROR: currently unstable
34 unsafe fn foo() {}
35
36 fn main() {}