2018-01-03 17:43:30 +01:00
|
|
|
// compile-flags: -C no-prepopulate-passes
|
|
|
|
|
|
|
|
// ignore-aarch64
|
|
|
|
// ignore-asmjs
|
2018-03-09 10:18:19 +00:00
|
|
|
// ignore-mips64
|
2018-06-06 00:12:00 +02:00
|
|
|
// ignore-powerpc
|
|
|
|
// ignore-powerpc64
|
|
|
|
// ignore-powerpc64le
|
2018-01-03 17:43:30 +01:00
|
|
|
// ignore-s390x
|
2018-06-04 13:27:32 +02:00
|
|
|
// ignore-sparc
|
|
|
|
// ignore-sparc64
|
2018-01-03 17:43:30 +01:00
|
|
|
// ignore-wasm
|
|
|
|
// ignore-x86
|
|
|
|
// ignore-x86_64
|
|
|
|
// See repr-transparent.rs
|
|
|
|
|
|
|
|
#![crate_type="lib"]
|
|
|
|
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct Big([u32; 16]);
|
|
|
|
|
|
|
|
#[repr(transparent)]
|
|
|
|
pub struct BigW(Big);
|
|
|
|
|
|
|
|
// CHECK: define void @test_Big(%Big* [[BIG_RET_ATTRS:.*]], [16 x i32]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern fn test_Big(_: Big) -> Big { loop {} }
|
|
|
|
|
|
|
|
// CHECK: define void @test_BigW(%BigW* [[BIG_RET_ATTRS]], [16 x i32]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern fn test_BigW(_: BigW) -> BigW { loop {} }
|
|
|
|
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub union BigU {
|
|
|
|
foo: [u32; 16],
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(transparent)]
|
|
|
|
pub struct BigUw(BigU);
|
|
|
|
|
|
|
|
// CHECK: define void @test_BigU(%BigU* [[BIGU_RET_ATTRS:.*]], [16 x i32]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern fn test_BigU(_: BigU) -> BigU { loop {} }
|
|
|
|
|
|
|
|
// CHECK: define void @test_BigUw(%BigUw* [[BIGU_RET_ATTRS]], [16 x i32]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern fn test_BigUw(_: BigUw) -> BigUw { loop {} }
|