rust/tests/mir-opt/uninhabited_fallthrough_elimination.keep_fallthrough.UninhabitedEnumBranching.diff

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

39 lines
747 B
Diff
Raw Normal View History

- // MIR for `keep_fallthrough` before UninhabitedEnumBranching
+ // MIR for `keep_fallthrough` after UninhabitedEnumBranching
fn keep_fallthrough(_1: S) -> u32 {
2023-06-06 13:47:00 +00:00
debug s => _1;
let mut _0: u32;
let mut _2: isize;
bb0: {
2023-06-06 13:47:00 +00:00
_2 = discriminant(_1);
- switchInt(move _2) -> [0: bb2, 1: bb3, otherwise: bb1];
+ switchInt(move _2) -> [0: bb5, 1: bb3, otherwise: bb1];
}
bb1: {
2023-06-06 13:47:00 +00:00
_0 = const 3_u32;
goto -> bb4;
}
bb2: {
2023-06-06 13:47:00 +00:00
_0 = const 1_u32;
goto -> bb4;
}
bb3: {
2023-06-06 13:47:00 +00:00
_0 = const 2_u32;
goto -> bb4;
}
bb4: {
2023-06-06 13:47:00 +00:00
return;
+ }
+
+ bb5: {
+ unreachable;
}
}