2015-05-24 16:07:52 +00:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
2021-04-03 11:05:11 +00:00
|
|
|
//
|
2015-05-24 16:07:52 +00:00
|
|
|
|
2015-09-15 21:22:16 +00:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
2015-05-24 16:07:52 +00:00
|
|
|
pub struct Bytes {
|
|
|
|
a: u8,
|
|
|
|
b: u8,
|
|
|
|
c: u8,
|
|
|
|
d: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: small_array_alignment
|
|
|
|
// The array is stored as i32, but its alignment is lower, go with 1 byte to avoid target
|
|
|
|
// dependent alignment
|
|
|
|
#[no_mangle]
|
2016-03-06 12:28:11 +00:00
|
|
|
pub fn small_array_alignment(x: &mut [i8; 4], y: [i8; 4]) {
|
2024-02-24 05:48:20 +00:00
|
|
|
// CHECK: [[TMP:%.+]] = alloca [4 x i8], align 4
|
|
|
|
// CHECK: %y = alloca [4 x i8], align 1
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: store i32 %0, ptr [[TMP]]
|
|
|
|
// CHECK: call void @llvm.memcpy.{{.*}}(ptr align 1 {{.+}}, ptr align 4 {{.+}}, i{{[0-9]+}} 4, i1 false)
|
2016-03-06 12:28:11 +00:00
|
|
|
*x = y;
|
2015-05-24 16:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: small_struct_alignment
|
|
|
|
// The struct is stored as i32, but its alignment is lower, go with 1 byte to avoid target
|
|
|
|
// dependent alignment
|
|
|
|
#[no_mangle]
|
2016-03-06 12:28:11 +00:00
|
|
|
pub fn small_struct_alignment(x: &mut Bytes, y: Bytes) {
|
2024-02-24 05:48:20 +00:00
|
|
|
// CHECK: [[TMP:%.+]] = alloca [4 x i8], align 4
|
|
|
|
// CHECK: %y = alloca [4 x i8], align 1
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: store i32 %0, ptr [[TMP]]
|
|
|
|
// CHECK: call void @llvm.memcpy.{{.*}}(ptr align 1 {{.+}}, ptr align 4 {{.+}}, i{{[0-9]+}} 4, i1 false)
|
2016-03-06 12:28:11 +00:00
|
|
|
*x = y;
|
2015-05-24 16:07:52 +00:00
|
|
|
}
|