mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
49 lines
996 B
Diff
49 lines
996 B
Diff
- // MIR for `custom_discriminant` before UninhabitedEnumBranching
|
|
+ // MIR for `custom_discriminant` after UninhabitedEnumBranching
|
|
|
|
fn custom_discriminant() -> () {
|
|
let mut _0: ();
|
|
let _1: &str;
|
|
let mut _2: Test2;
|
|
let mut _3: isize;
|
|
let _4: &str;
|
|
|
|
bb0: {
|
|
StorageLive(_1);
|
|
StorageLive(_2);
|
|
_2 = Test2::D;
|
|
_3 = discriminant(_2);
|
|
- switchInt(move _3) -> [4: bb3, 5: bb1, otherwise: bb2];
|
|
+ switchInt(move _3) -> [4: bb3, 5: bb1, otherwise: bb5];
|
|
}
|
|
|
|
bb1: {
|
|
StorageLive(_4);
|
|
_4 = const "E";
|
|
_1 = &(*_4);
|
|
StorageDead(_4);
|
|
goto -> bb4;
|
|
}
|
|
|
|
bb2: {
|
|
unreachable;
|
|
}
|
|
|
|
bb3: {
|
|
_1 = const "D";
|
|
goto -> bb4;
|
|
}
|
|
|
|
bb4: {
|
|
StorageDead(_2);
|
|
StorageDead(_1);
|
|
_0 = const ();
|
|
return;
|
|
+ }
|
|
+
|
|
+ bb5: {
|
|
+ unreachable;
|
|
}
|
|
}
|
|
|