mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
23 lines
370 B
Rust
23 lines
370 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: bb2];
|
|
}
|
|
|
|
bb1: {
|
|
StorageDead(_1);
|
|
_0 = const ();
|
|
return;
|
|
}
|
|
|
|
bb2 (cleanup): {
|
|
terminate(abi);
|
|
}
|
|
}
|