]> git.proxmox.com Git - rustc.git/blame - src/test/codegen/issue-56267.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / codegen / issue-56267.rs
CommitLineData
450edc1f
XL
1// compile-flags: -C no-prepopulate-passes
2
3#![crate_type="rlib"]
4
5#[allow(dead_code)]
6pub struct Foo<T> {
7 foo: u64,
8 bar: T,
9}
10
11// The store writing to bar.1 should have alignment 4. Not checking
12// other stores here, as the alignment will be platform-dependent.
13
923072b8 14// CHECK: store i32 [[TMP1:%.+]], {{i32\*|ptr}} [[TMP2:%.+]], align 4
450edc1f
XL
15#[no_mangle]
16pub fn test(x: (i32, i32)) -> Foo<(i32, i32)> {
17 Foo { foo: 0, bar: x }
18}