]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/loads.rs
Rollup merge of #28991 - goyox86:goyox86/rustfmting-liblog-II, r=alexcrichton
[rust.git] / src / test / codegen / loads.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 #![crate_type = "lib"]
14
15 pub struct Bytes {
16   a: u8,
17   b: u8,
18   c: u8,
19   d: u8,
20 }
21
22 // CHECK-LABEL: @borrow
23 #[no_mangle]
24 pub fn borrow(x: &i32) -> &i32 {
25 // CHECK: load {{(i32\*, )?}}i32** %x{{.*}}, !nonnull
26     x
27 }
28
29 // CHECK-LABEL: @_box
30 #[no_mangle]
31 pub fn _box(x: Box<i32>) -> i32 {
32 // CHECK: load {{(i32\*, )?}}i32** %x{{.*}}, !nonnull
33     *x
34 }
35
36 // CHECK-LABEL: small_array_alignment
37 // The array is loaded as i32, but its alignment is lower, go with 1 byte to avoid target
38 // dependent alignment
39 #[no_mangle]
40 pub fn small_array_alignment(x: [i8; 4]) -> [i8; 4] {
41 // CHECK: [[VAR:%[0-9]+]] = load {{(i32, )?}}i32* %{{.*}}, align 1
42 // CHECK: ret i32 [[VAR]]
43     x
44 }
45
46 // CHECK-LABEL: small_struct_alignment
47 // The struct is loaded as i32, but its alignment is lower, go with 1 byte to avoid target
48 // dependent alignment
49 #[no_mangle]
50 pub fn small_struct_alignment(x: Bytes) -> Bytes {
51 // CHECK: [[VAR:%[0-9]+]] = load {{(i32, )?}}i32* %{{.*}}, align 1
52 // CHECK: ret i32 [[VAR]]
53     x
54 }