]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/repr-transparent-aggregates-2.rs
Enable emission of alignment attrs for pointer params
[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-powerpc
17 // ignore-powerpc64
18 // ignore-powerpc64le
19 // ignore-s390x
20 // ignore-sparc
21 // ignore-sparc64
22 // ignore-wasm
23 // ignore-x86
24 // ignore-x86_64
25 // See repr-transparent.rs
26
27 #![crate_type="lib"]
28
29
30 #[repr(C)]
31 pub struct Big([u32; 16]);
32
33 #[repr(transparent)]
34 pub struct BigW(Big);
35
36 // CHECK: define void @test_Big(%Big* [[BIG_RET_ATTRS:.*]], [16 x i32]
37 #[no_mangle]
38 pub extern fn test_Big(_: Big) -> Big { loop {} }
39
40 // CHECK: define void @test_BigW(%BigW* [[BIG_RET_ATTRS]], [16 x i32]
41 #[no_mangle]
42 pub extern fn test_BigW(_: BigW) -> BigW { loop {} }
43
44
45 #[repr(C)]
46 pub union BigU {
47     foo: [u32; 16],
48 }
49
50 #[repr(transparent)]
51 pub struct BigUw(BigU);
52
53 // CHECK: define void @test_BigU(%BigU* [[BIGU_RET_ATTRS:.*]], [16 x i32]
54 #[no_mangle]
55 pub extern fn test_BigU(_: BigU) -> BigU { loop {} }
56
57 // CHECK: define void @test_BigUw(%BigUw* [[BIGU_RET_ATTRS]], [16 x i32]
58 #[no_mangle]
59 pub extern fn test_BigUw(_: BigUw) -> BigUw { loop {} }