Skip to content

Commit 5c352a4

Browse files
committed
add test for Drop terminator on non-drop type
1 parent d261b53 commit 5c352a4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#![feature(custom_mir, core_intrinsics, strict_provenance)]
2+
use std::intrinsics::mir::*;
3+
4+
// The `Drop` terminator on a type with no drop glue should be a NOP.
5+
6+
#[custom_mir(dialect = "runtime", phase = "optimized")]
7+
fn drop_in_place_with_terminator(ptr: *mut i32) {
8+
mir! {
9+
{
10+
Drop(*ptr, ReturnTo(after_call), UnwindContinue())
11+
}
12+
after_call = {
13+
Return()
14+
}
15+
}
16+
}
17+
18+
pub fn main() {
19+
drop_in_place_with_terminator(std::ptr::without_provenance_mut(0));
20+
drop_in_place_with_terminator(std::ptr::without_provenance_mut(1));
21+
}

0 commit comments

Comments
 (0)