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

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

35 lines
747 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);
_2 = val() -> [return: bb1, unwind unreachable];
2020-05-24 14:37:09 -05:00
}
bb1: {
_1 = Un { us: move _2 };
2023-06-06 08:47:00 -05:00
StorageDead(_2);
StorageLive(_3);
_3 = (_1.0: u32);
2023-06-06 08:47:00 -05:00
StorageDead(_3);
StorageDead(_1);
return;
2020-05-24 14:37:09 -05:00
}
}