2023-01-23 07:15:53 -06:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
// revisions: ENABLE_SVE DISABLE_SVE DISABLE_NEON ENABLE_NEON
|
|
|
|
// compile-flags: --crate-type=rlib --target=aarch64-unknown-linux-gnu
|
|
|
|
// needs-llvm-components: aarch64
|
|
|
|
|
2023-01-25 10:05:24 -06:00
|
|
|
// The "+v8a" feature is matched as optional as it isn't added when we
|
|
|
|
// are targeting older LLVM versions. Once the min supported version
|
2023-05-22 08:46:40 -05:00
|
|
|
// is LLVM-14 we can remove the optional regex matching for this feature.
|
2023-01-25 10:05:24 -06:00
|
|
|
|
2023-01-23 07:15:53 -06:00
|
|
|
// [ENABLE_SVE] compile-flags: -C target-feature=+sve
|
2023-05-22 08:46:40 -05:00
|
|
|
// ENABLE_SVE: attributes #0 = { {{.*}} "target-features"="{{((\+outline-atomics,?)|(\+v8a,?)?|(\+sve,?)|(\+neon,?))*}}" }
|
2023-01-23 07:15:53 -06:00
|
|
|
|
|
|
|
// [DISABLE_SVE] compile-flags: -C target-feature=-sve
|
2023-05-22 08:46:40 -05:00
|
|
|
// DISABLE_SVE: attributes #0 = { {{.*}} "target-features"="{{((\+outline-atomics,?)|(\+v8a,?)?|(-sve,?)|(\+neon,?))*}}" }
|
2023-01-23 07:15:53 -06:00
|
|
|
|
|
|
|
// [DISABLE_NEON] compile-flags: -C target-feature=-neon
|
2023-05-22 08:46:40 -05:00
|
|
|
// DISABLE_NEON: attributes #0 = { {{.*}} "target-features"="{{((\+outline-atomics,?)|(\+v8a,?)?|(-fp-armv8,?)|(-neon,?))*}}" }
|
2023-01-23 07:15:53 -06:00
|
|
|
|
|
|
|
// [ENABLE_NEON] compile-flags: -C target-feature=+neon
|
2023-05-22 08:46:40 -05:00
|
|
|
// ENABLE_NEON: attributes #0 = { {{.*}} "target-features"="{{((\+outline-atomics,?)|(\+v8a,?)?|(\+fp-armv8,?)|(\+neon,?))*}}" }
|
2023-01-23 07:15:53 -06:00
|
|
|
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
|
|
|
|
pub fn test() {}
|