about summary refs log tree commit diff
path: root/tests/ui/invalid-compile-flags/reg-struct-return/requires-x86.rs
blob: 436442ee72993d691ce4abeb728cc2732f6250fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//@ revisions: x86 x86_64 aarch64

//@ compile-flags: -Zreg-struct-return

//@[x86] check-pass
//@[x86] needs-llvm-components: x86
//@[x86] compile-flags: --target i686-unknown-linux-gnu

//@[x86_64] check-fail
//@[x86_64] needs-llvm-components: x86
//@[x86_64] compile-flags: --target x86_64-unknown-linux-gnu

//@[aarch64] check-fail
//@[aarch64] needs-llvm-components: aarch64
//@[aarch64] compile-flags: --target aarch64-unknown-linux-gnu

#![feature(no_core)]
#![no_core]
#![no_main]

//[x86_64]~? ERROR `-Zreg-struct-return` is only supported on x86
//[aarch64]~? ERROR `-Zreg-struct-return` is only supported on x86