We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d371bce commit b331b86Copy full SHA for b331b86
src/test/codegen/box-maybe-uninit.rs
@@ -9,5 +9,8 @@ use std::mem::MaybeUninit;
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::uninitialized())
16
}
0 commit comments