rust/tests/mir-opt/unreachable_diverging.main....

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

70 lines
1.5 KiB
Diff
Raw Normal View History

2020-04-03 05:09:01 +08:00
- // MIR for `main` before UnreachablePropagation
+ // MIR for `main` after UnreachablePropagation
fn main() -> () {
2023-06-06 21:47:00 +08:00
let mut _0: ();
let _1: bool;
let mut _2: std::option::Option<Empty>;
let mut _3: 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 => _1;
2020-04-03 05:09:01 +08:00
scope 2 {
2023-06-06 21:47:00 +08:00
debug bomb => _4;
let _4: Empty;
2020-04-03 05:09:01 +08:00
}
}
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_1);
_1 = const true;
StorageLive(_2);
_2 = empty() -> [return: bb1, unwind unreachable];
2020-04-03 05:09:01 +08:00
}
bb1: {
2023-06-06 21:47:00 +08:00
_3 = discriminant(_2);
switchInt(move _3) -> [1: bb2, otherwise: bb6];
2020-04-03 05:09:01 +08:00
}
bb2: {
2023-06-06 21:47:00 +08:00
StorageLive(_4);
_4 = move ((_2 as Some).0: Empty);
StorageLive(_5);
StorageLive(_6);
_6 = copy _1;
- switchInt(move _6) -> [0: bb4, otherwise: bb3];
+ _8 = Ne(copy _6, const false);
+ assume(move _8);
+ goto -> bb3;
2020-04-03 05:09:01 +08:00
}
bb3: {
2023-06-06 21:47:00 +08:00
_5 = loop_forever() -> [return: bb5, unwind unreachable];
2020-04-03 05:09:01 +08:00
}
bb4: {
2023-06-06 21:47:00 +08:00
- _5 = const ();
- goto -> bb5;
+ unreachable;
2022-07-26 21:17:02 +08:00
}
bb5: {
2023-06-06 21:47:00 +08:00
- StorageDead(_6);
- StorageDead(_5);
- StorageLive(_7);
unreachable;
2020-04-03 05:09:01 +08:00
}
2022-07-26 21:17:02 +08:00
bb6: {
2023-06-06 21:47:00 +08:00
_0 = const ();
StorageDead(_1);
StorageDead(_2);
return;
}
2020-04-03 05:09:01 +08:00
}