rust/tests/mir-opt/unreachable.if_let.Unreacha...

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

73 lines
1.5 KiB
Diff
Raw Normal View History

- // MIR for `if_let` before UnreachablePropagation
+ // MIR for `if_let` after UnreachablePropagation
2020-04-03 05:09:01 +08:00
fn if_let() -> () {
2023-06-06 21:47:00 +08:00
let mut _0: ();
let mut _1: std::option::Option<Empty>;
let mut _2: isize;
let _5: ();
let mut _6: bool;
let mut _7: !;
+ let mut _8: bool;
2020-04-03 05:09:01 +08:00
scope 1 {
2023-06-06 21:47:00 +08:00
debug _x => _3;
let _3: Empty;
let mut _4: i32;
2022-06-10 14:16:56 +08:00
scope 2 {
2023-06-06 21:47:00 +08:00
debug _y => _4;
2022-06-10 14:16:56 +08:00
}
2020-04-03 05:09:01 +08:00
}
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_1);
2023-06-24 00:53:09 +08:00
_1 = empty() -> [return: bb1, unwind continue];
2020-04-03 05:09:01 +08:00
}
bb1: {
2023-06-06 21:47:00 +08:00
_2 = discriminant(_1);
- switchInt(move _2) -> [1: bb2, otherwise: bb6];
+ _8 = Ne(copy _2, const 1_isize);
+ assume(move _8);
+ goto -> bb6;
2020-04-03 05:09:01 +08:00
}
bb2: {
2023-06-06 21:47:00 +08:00
- StorageLive(_3);
- _3 = move ((_1 as Some).0: Empty);
- StorageLive(_4);
- StorageLive(_5);
- StorageLive(_6);
- _6 = const true;
- switchInt(move _6) -> [0: bb4, otherwise: bb3];
2023-07-22 23:34:54 +08:00
+ unreachable;
}
bb3: {
2023-06-06 21:47:00 +08:00
- _4 = const 21_i32;
- _5 = const ();
- goto -> bb5;
2023-07-22 23:34:54 +08:00
+ unreachable;
}
bb4: {
2023-06-06 21:47:00 +08:00
- _4 = const 42_i32;
- _5 = const ();
- goto -> bb5;
2023-07-22 23:34:54 +08:00
+ unreachable;
}
bb5: {
2023-06-06 21:47:00 +08:00
- StorageDead(_6);
- StorageDead(_5);
- StorageLive(_7);
unreachable;
}
2023-07-22 23:34:54 +08:00
bb6: {
2023-06-06 21:47:00 +08:00
_0 = const ();
StorageDead(_1);
return;
2020-04-03 05:09:01 +08:00
}
}