rust/tests/mir-opt/simplify_match.main.GVN.panic-unwind.diff

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

35 lines
691 B
Diff
Raw Permalink Normal View History

2023-09-20 16:43:33 -05:00
- // MIR for `main` before GVN
+ // MIR for `main` after GVN
fn main() -> () {
let mut _0: ();
let mut _1: bool;
let _2: bool;
scope 1 {
debug x => _2;
}
bb0: {
StorageLive(_1);
- StorageLive(_2);
+ nop;
2023-09-20 16:43:33 -05:00
_2 = const false;
- _1 = copy _2;
- StorageDead(_2);
- switchInt(copy _1) -> [0: bb2, otherwise: bb1];
+ _1 = const false;
+ nop;
2024-01-06 18:30:08 -06:00
+ switchInt(const false) -> [0: bb2, otherwise: bb1];
2023-09-20 16:43:33 -05:00
}
bb1: {
2024-01-06 18:30:08 -06:00
_0 = noop() -> [return: bb2, unwind continue];
2023-09-20 16:43:33 -05:00
}
bb2: {
StorageDead(_1);
2023-09-20 16:43:33 -05:00
return;
}
}