]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/stores.rs
Rollup merge of #26348 - eefriedman:unused-interiorsafety, r=luqmana
[rust.git] / src / test / codegen / stores.rs
1 // Copyright 2015 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 pub struct Bytes {
14   a: u8,
15   b: u8,
16   c: u8,
17   d: u8,
18 }
19
20 // CHECK-LABEL: small_array_alignment
21 // The array is stored as i32, but its alignment is lower, go with 1 byte to avoid target
22 // dependent alignment
23 #[no_mangle]
24 pub fn small_array_alignment(x: &mut [i8; 4]) {
25 // CHECK: [[VAR:%[0-9]+]] = load [4 x i8]*, [4 x i8]** %x
26 // CHECK: [[VAR2:%[0-9]+]] = bitcast [4 x i8]* [[VAR]] to i32*
27 // CHECK: store i32 %{{.*}}, i32* [[VAR2]], align 1
28     *x = [0; 4];
29 }
30
31 // CHECK-LABEL: small_struct_alignment
32 // The struct is stored as i32, but its alignment is lower, go with 1 byte to avoid target
33 // dependent alignment
34 #[no_mangle]
35 pub fn small_struct_alignment(x: &mut Bytes) {
36 // CHECK: [[VAR:%[0-9]+]] = load %Bytes*, %Bytes** %x
37 // CHECK: [[VAR2:%[0-9]+]] = bitcast %Bytes* [[VAR]] to i32*
38 // CHECK: store i32 %{{.*}}, i32* [[VAR2]], align 1
39     *x = Bytes {
40         a: 0,
41         b: 0,
42         c: 0,
43         d: 0,
44     };
45 }