]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/repr-transparent-aggregates-2.rs
Rollup merge of #51099 - Crazycolorz5:expectedcloseparen, r=estebank
[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 #![feature(repr_transparent)]
26
27
28 #[repr(C)]
29 pub struct Big([u32; 16]);
30
31 #[repr(transparent)]
32 pub struct BigW(Big);
33
34 // CHECK: define void @test_Big(%Big* [[BIG_RET_ATTRS:.*]], [16 x i32]
35 #[no_mangle]
36 pub extern fn test_Big(_: Big) -> Big { loop {} }
37
38 // CHECK: define void @test_BigW(%BigW* [[BIG_RET_ATTRS]], [16 x i32]
39 #[no_mangle]
40 pub extern fn test_BigW(_: BigW) -> BigW { loop {} }
41
42
43 #[repr(C)]
44 pub union BigU {
45     foo: [u32; 16],
46 }
47
48 #[repr(transparent)]
49 pub struct BigUw(BigU);
50
51 // CHECK: define void @test_BigU(%BigU* [[BIGU_RET_ATTRS:.*]], [16 x i32]
52 #[no_mangle]
53 pub extern fn test_BigU(_: BigU) -> BigU { loop {} }
54
55 // CHECK: define void @test_BigUw(%BigUw* [[BIGU_RET_ATTRS]], [16 x i32]
56 #[no_mangle]
57 pub extern fn test_BigUw(_: BigUw) -> BigUw { loop {} }