|
| 1 | +//@ revisions: sparc sparcv8plus sparc_cpu_v9 sparc_feature_v8plus sparc_cpu_v9_feature_v8plus |
| 2 | +//@[sparc] compile-flags: --target sparc-unknown-none-elf |
| 3 | +//@[sparc] needs-llvm-components: sparc |
| 4 | +//@[sparcv8plus] compile-flags: --target sparc-unknown-linux-gnu |
| 5 | +//@[sparcv8plus] needs-llvm-components: sparc |
| 6 | +//@[sparc_cpu_v9] compile-flags: --target sparc-unknown-none-elf -C target-cpu=v9 |
| 7 | +//@[sparc_cpu_v9] needs-llvm-components: sparc |
| 8 | +//@[sparc_feature_v8plus] compile-flags: --target sparc-unknown-none-elf -C target-feature=+v8plus |
| 9 | +//@[sparc_feature_v8plus] needs-llvm-components: sparc |
| 10 | +//@[sparc_cpu_v9_feature_v8plus] compile-flags: --target sparc-unknown-none-elf -C target-cpu=v9 -C target-feature=+v8plus |
| 11 | +//@[sparc_cpu_v9_feature_v8plus] needs-llvm-components: sparc |
| 12 | +//@ exact-llvm-major-version: 19 |
| 13 | + |
| 14 | +#![crate_type = "rlib"] |
| 15 | +#![feature(no_core, rustc_attrs, lang_items)] |
| 16 | +#![no_core] |
| 17 | + |
| 18 | +#[lang = "sized"] |
| 19 | +trait Sized {} |
| 20 | +#[lang = "copy"] |
| 21 | +trait Copy {} |
| 22 | + |
| 23 | +#[rustc_builtin_macro] |
| 24 | +macro_rules! compile_error { |
| 25 | + () => {}; |
| 26 | +} |
| 27 | + |
| 28 | +#[cfg(all(not(target_feature = "v8plus"), not(target_feature = "v9")))] |
| 29 | +compile_error!("-v8plus,-v9"); |
| 30 | +//[sparc]~^ ERROR -v8plus,-v9 |
| 31 | + |
| 32 | +// FIXME: sparc_cpu_v9 should be in "-v8plus,+v9" group (fixed in LLVM 20) |
| 33 | +#[cfg(all(target_feature = "v8plus", target_feature = "v9"))] |
| 34 | +compile_error!("+v8plus,+v9"); |
| 35 | +//[sparcv8plus,sparc_cpu_v9_feature_v8plus,sparc_cpu_v9]~^ ERROR +v8plus,+v9 |
| 36 | + |
| 37 | +// FIXME: should be rejected |
| 38 | +#[cfg(all(target_feature = "v8plus", not(target_feature = "v9")))] |
| 39 | +compile_error!("+v8plus,-v9 (FIXME)"); |
| 40 | +//[sparc_feature_v8plus]~^ ERROR +v8plus,-v9 (FIXME) |
| 41 | + |
| 42 | +#[cfg(all(not(target_feature = "v8plus"), target_feature = "v9"))] |
| 43 | +compile_error!("-v8plus,+v9"); |
0 commit comments