]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/box-maybe-uninit.rs
Rollup merge of #106274 - jyn514:dump-mono-stats, r=lqd
[rust.git] / src / test / codegen / box-maybe-uninit.rs
1 // compile-flags: -O
2 // min-llvm-version: 15.0
3 #![crate_type="lib"]
4
5 use std::mem::MaybeUninit;
6
7 // Boxing a `MaybeUninit` value should not copy junk from the stack
8 #[no_mangle]
9 pub fn box_uninitialized() -> Box<MaybeUninit<usize>> {
10     // CHECK-LABEL: @box_uninitialized
11     // CHECK-NOT: store
12     // CHECK-NOT: alloca
13     // CHECK-NOT: memcpy
14     // CHECK-NOT: memset
15     Box::new(MaybeUninit::uninit())
16 }
17
18 // FIXME: add a test for a bigger box. Currently broken, see
19 // https://github.com/rust-lang/rust/issues/58201.
20
21 // Hide the `allocalign` attribute in the declaration of __rust_alloc
22 // from the CHECK-NOT above, and also verify the attributes got set reasonably.
23 // CHECK: declare noalias ptr @__rust_alloc(i{{[0-9]+}}, i{{[0-9]+}} allocalign) unnamed_addr [[RUST_ALLOC_ATTRS:#[0-9]+]]
24
25 // CHECK-DAG: attributes [[RUST_ALLOC_ATTRS]] = { {{.*}} allockind("alloc,uninitialized,aligned") allocsize(0) uwtable "alloc-family"="__rust_alloc" {{.*}} }