rust/tests/mir-opt/instsimplify_duplicate_switch_targets.assert_zero.InstSimplify.diff

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

22 lines
404 B
Diff
Raw Normal View History

2023-05-06 22:20:58 -05:00
- // MIR for `assert_zero` before InstSimplify
+ // MIR for `assert_zero` after InstSimplify
2023-02-24 15:32:59 -06:00
fn assert_zero(_1: u8) -> u8 {
2023-06-06 08:47:00 -05:00
let mut _0: u8;
2023-02-24 15:32:59 -06:00
bb0: {
2023-06-06 08:47:00 -05:00
- switchInt(_1) -> [0: bb2, 1: bb1, otherwise: bb1];
+ switchInt(_1) -> [0: bb2, otherwise: bb1];
2023-02-24 15:32:59 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
unreachable;
2023-02-24 15:32:59 -06:00
}
bb2: {
2023-06-06 08:47:00 -05:00
_0 = _1;
return;
2023-02-24 15:32:59 -06:00
}
}