2025-02-08 19:45:40 -08:00
|
|
|
//@ compile-flags: --crate-type=lib -Copt-level=3 -Cdebuginfo=2 -Cno-prepopulate-passes -Zmir-enable-passes=-ScalarReplacementOfAggregates
|
2023-05-26 14:53:34 -04:00
|
|
|
// MIR SROA will decompose the closure
|
2022-12-08 19:06:27 -05:00
|
|
|
#![feature(stmt_expr_attributes)]
|
|
|
|
|
|
|
|
|
|
pub struct S([usize; 8]);
|
|
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
|
pub fn outer_function(x: S, y: S) -> usize {
|
2024-05-29 14:11:20 +10:00
|
|
|
(#[inline(always)]
|
|
|
|
|
|| {
|
2022-12-08 19:06:27 -05:00
|
|
|
let _z = x;
|
|
|
|
|
y.0[0]
|
|
|
|
|
})()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that we do not attempt to load from the spilled arg before it is assigned to
|
|
|
|
|
// when generating debuginfo.
|
|
|
|
|
// CHECK-LABEL: @outer_function
|
2024-04-12 08:31:35 -04:00
|
|
|
// CHECK: [[spill:%.*]] = alloca
|
2024-02-23 23:23:35 -05:00
|
|
|
// CHECK-NOT: [[ptr_tmp:%.*]] = getelementptr inbounds i8, ptr [[spill]]
|
2022-12-07 13:48:34 -05:00
|
|
|
// CHECK-NOT: [[load:%.*]] = load ptr, ptr
|
2022-12-08 19:06:27 -05:00
|
|
|
// CHECK: call void @llvm.lifetime.start{{.*}}({{.*}}, ptr [[spill]])
|
2024-02-23 23:23:35 -05:00
|
|
|
// CHECK: [[inner:%.*]] = getelementptr inbounds i8, ptr [[spill]]
|
2023-04-05 21:15:32 +02:00
|
|
|
// CHECK: call void @llvm.memcpy{{.*}}(ptr {{align .*}} [[inner]], ptr {{align .*}} %x
|