os-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
694 B
Diff
Raw Normal View History

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