]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/repr-transparent-aggregates-2.rs
Auto merge of #51382 - GuillaumeGomez:intra-link-lint, r=QuietMisdreavus
[rust.git] / src / test / codegen / repr-transparent-aggregates-2.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags: -C no-prepopulate-passes
12
13 // ignore-aarch64
14 // ignore-asmjs
15 // ignore-mips64
16 // ignore-s390x
17 // ignore-sparc
18 // ignore-sparc64
19 // ignore-wasm
20 // ignore-x86
21 // ignore-x86_64
22 // See repr-transparent.rs
23
24 #![crate_type="lib"]
25
26
27 #[repr(C)]
28 pub struct Big([u32; 16]);
29
30 #[repr(transparent)]
31 pub struct BigW(Big);
32
33 // CHECK: define void @test_Big(%Big* [[BIG_RET_ATTRS:.*]], [16 x i32]
34 #[no_mangle]
35 pub extern fn test_Big(_: Big) -> Big { loop {} }
36
37 // CHECK: define void @test_BigW(%BigW* [[BIG_RET_ATTRS]], [16 x i32]
38 #[no_mangle]
39 pub extern fn test_BigW(_: BigW) -> BigW { loop {} }
40
41
42 #[repr(C)]
43 pub union BigU {
44     foo: [u32; 16],
45 }
46
47 #[repr(transparent)]
48 pub struct BigUw(BigU);
49
50 // CHECK: define void @test_BigU(%BigU* [[BIGU_RET_ATTRS:.*]], [16 x i32]
51 #[no_mangle]
52 pub extern fn test_BigU(_: BigU) -> BigU { loop {} }
53
54 // CHECK: define void @test_BigUw(%BigUw* [[BIGU_RET_ATTRS]], [16 x i32]
55 #[no_mangle]
56 pub extern fn test_BigUw(_: BigUw) -> BigUw { loop {} }