rust/tests/mir-opt/uninhabited_fallthrough_eli...

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

39 lines
762 B
Diff
Raw Normal View History

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