Fix incorrect CHECK-LABEL

This commit is contained in:
Nikita Popov 2024-04-09 10:05:26 +09:00
parent 3695af697e
commit 137775dd63

View file

@ -24,7 +24,7 @@ pub fn new_from_uninit() -> Foo {
}
pub fn new_from_uninit_unwind() -> Foo {
// CHECK-LABEL: new_from_uninit
// CHECK-LABEL: new_from_uninit_unwind
// CHECK-NOT: call void @llvm.memcpy.
let mut x = std::mem::MaybeUninit::uninit();
unsafe {