]> git.proxmox.com Git - rustc.git/blame - src/test/codegen/stores.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / codegen / stores.rs
CommitLineData
62682a34 1// compile-flags: -C no-prepopulate-passes
cdc7bbd5 2//
62682a34 3
b039eaaf
SL
4#![crate_type = "lib"]
5
62682a34
SL
6pub struct Bytes {
7 a: u8,
8 b: u8,
9 c: u8,
10 d: u8,
11}
12
13// CHECK-LABEL: small_array_alignment
14// The array is stored as i32, but its alignment is lower, go with 1 byte to avoid target
15// dependent alignment
16#[no_mangle]
54a0048b 17pub fn small_array_alignment(x: &mut [i8; 4], y: [i8; 4]) {
a7813a04 18// CHECK: [[TMP:%.+]] = alloca i32
abe05a73 19// CHECK: %y = alloca [4 x i8]
923072b8
FG
20// CHECK: store i32 %0, {{i32\*|ptr}} [[TMP]]
21// CHECK: call void @llvm.memcpy.{{.*}}({{i8\*|ptr}} align 1 {{.+}}, {{i8\*|ptr}} align 4 {{.+}}, i{{[0-9]+}} 4, i1 false)
54a0048b 22 *x = y;
62682a34
SL
23}
24
25// CHECK-LABEL: small_struct_alignment
26// The struct is stored as i32, but its alignment is lower, go with 1 byte to avoid target
27// dependent alignment
28#[no_mangle]
54a0048b 29pub fn small_struct_alignment(x: &mut Bytes, y: Bytes) {
a7813a04 30// CHECK: [[TMP:%.+]] = alloca i32
abe05a73 31// CHECK: %y = alloca %Bytes
923072b8
FG
32// CHECK: store i32 %0, {{i32\*|ptr}} [[TMP]]
33// CHECK: call void @llvm.memcpy.{{.*}}({{i8\*|ptr}} align 1 {{.+}}, {{i8\*|ptr}} align 4 {{.+}}, i{{[0-9]+}} 4, i1 false)
54a0048b 34 *x = y;
62682a34 35}