rust/tests/mir-opt/dest-prop/union.main.DestinationPropagation.panic-unwind.diff

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
681 B
Diff
Raw Normal View History

2020-05-24 14:37:09 -05:00
- // MIR for `main` before DestinationPropagation
+ // MIR for `main` after DestinationPropagation
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: main::Un;
let mut _2: u32;
let mut _3: u32;
2020-05-24 14:37:09 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug un => _1;
2020-05-24 14:37:09 -05:00
scope 2 {
}
2023-06-06 08:47:00 -05:00
scope 3 (inlined std::mem::drop::<u32>) {
debug _x => _3;
2020-05-24 14:37:09 -05:00
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
StorageLive(_2);
2023-06-23 11:53:09 -05:00
_2 = val() -> [return: bb1, unwind continue];
2020-05-24 14:37:09 -05:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_2);
StorageLive(_3);
StorageDead(_3);
StorageDead(_1);
return;
2020-05-24 14:37:09 -05:00
}
}