rust/src/test/codegen/box-maybe-uninit.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
956 B
Rust
Raw Normal View History

2018-09-20 20:57:25 +02:00
// compile-flags: -O
// min-llvm-version: 15.0
2018-09-20 20:57:25 +02:00
#![crate_type="lib"]
use std::mem::MaybeUninit;
// Boxing a `MaybeUninit` value should not copy junk from the stack
#[no_mangle]
pub fn box_uninitialized() -> Box<MaybeUninit<usize>> {
// CHECK-LABEL: @box_uninitialized
// CHECK-NOT: store
2019-02-05 22:26:30 +01:00
// CHECK-NOT: alloca
// CHECK-NOT: memcpy
// CHECK-NOT: memset
2019-03-19 09:46:11 +01:00
Box::new(MaybeUninit::uninit())
2018-09-20 20:57:25 +02:00
}
2019-03-19 09:46:11 +01:00
// FIXME: add a test for a bigger box. Currently broken, see
// https://github.com/rust-lang/rust/issues/58201.
// Hide the `allocalign` attribute in the declaration of __rust_alloc
// from the CHECK-NOT above, and also verify the attributes got set reasonably.
// CHECK: declare noalias ptr @__rust_alloc(i{{[0-9]+}}, i{{[0-9]+}} allocalign) unnamed_addr [[RUST_ALLOC_ATTRS:#[0-9]+]]
// CHECK-DAG: attributes [[RUST_ALLOC_ATTRS]] = { {{.*}} allockind("alloc,uninitialized,aligned") allocsize(0) uwtable "alloc-family"="__rust_alloc" {{.*}} }