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.

34 lines
734 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;
2023-09-20 16:43:33 -05:00
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 {
}
scope 4 (inlined std::mem::drop::<u32>) {
debug _x => _3;
2020-05-24 14:37:09 -05:00
}
}
scope 3 (inlined val) {
}
2020-05-24 14:37:09 -05:00
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
2023-09-20 16:43:33 -05:00
StorageLive(_2);
_2 = const 1_u32;
_1 = Un { us: const 1_u32 };
2023-09-20 16:43:33 -05:00
StorageDead(_2);
StorageLive(_3);
_3 = (_1.0: u32);
StorageDead(_3);
2023-06-06 08:47:00 -05:00
StorageDead(_1);
return;
2020-05-24 14:37:09 -05:00
}
}