Files
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.

19 lines
497 B
Rust
Raw Normal View History

2018-09-20 20:57:25 +02:00
// compile-flags: -O
#![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.