rust/tests/mir-opt/derefer_inline_test.main.Derefer.panic-unwind.diff

39 lines
795 B
Diff
Raw Normal View History

- // MIR for `main` before Derefer
+ // MIR for `main` after Derefer
fn main() -> () {
2023-06-06 13:47:00 +00:00
let mut _0: ();
let _1: std::boxed::Box<std::boxed::Box<u32>>;
let mut _2: std::boxed::Box<u32>;
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_1);
StorageLive(_2);
2023-06-23 16:53:09 +00:00
_2 = f() -> [return: bb1, unwind continue];
}
bb1: {
2023-06-06 13:47:00 +00:00
_1 = Box::<Box<u32>>::new(move _2) -> [return: bb2, unwind: bb4];
}
bb2: {
2023-06-06 13:47:00 +00:00
StorageDead(_2);
2023-06-23 16:53:09 +00:00
drop(_1) -> [return: bb3, unwind continue];
}
bb3: {
2023-06-06 13:47:00 +00:00
StorageDead(_1);
_0 = const ();
return;
}
bb4 (cleanup): {
2023-08-24 12:26:26 +00:00
drop(_2) -> [return: bb5, unwind terminate(cleanup)];
}
bb5 (cleanup): {
2023-06-06 13:47:00 +00:00
resume;
}
}