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

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

35 lines
684 B
Diff
Raw Normal View History

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