rust/tests/mir-opt/asm_unwind_panic_abort.main.AbortUnwindingCalls.after.mir
Matthew Jasper a277c901d9 Remove MIR unsafe check
This also remove safety information from MIR.
2024-04-03 08:50:12 +00:00

19 lines
328 B
Rust

// MIR for `main` after AbortUnwindingCalls
fn main() -> () {
let mut _0: ();
let _1: ();
bb0: {
StorageLive(_1);
_1 = const ();
asm!("", options(MAY_UNWIND)) -> [return: bb1, unwind terminate(abi)];
}
bb1: {
StorageDead(_1);
_0 = const ();
return;
}
}