rust/tests/mir-opt/matches_u8.exhaustive_match.MatchBranchSimplification.diff

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

33 lines
604 B
Diff
Raw Normal View History

- // MIR for `exhaustive_match` before MatchBranchSimplification
+ // MIR for `exhaustive_match` after MatchBranchSimplification
fn exhaustive_match(_1: E) -> u8 {
2023-06-06 08:47:00 -05:00
debug e => _1;
let mut _0: u8;
let mut _2: isize;
bb0: {
2023-06-06 08:47:00 -05:00
_2 = discriminant(_1);
switchInt(move _2) -> [0: bb3, 1: bb1, otherwise: bb2];
}
bb1: {
2023-06-06 08:47:00 -05:00
_0 = const 1_u8;
goto -> bb4;
}
bb2: {
2023-06-06 08:47:00 -05:00
unreachable;
}
bb3: {
2023-06-06 08:47:00 -05:00
_0 = const 0_u8;
goto -> bb4;
2022-07-26 08:17:02 -05:00
}
bb4: {
2023-06-06 08:47:00 -05:00
return;
}
}