rust/tests/mir-opt/unreachable_diverging.main.UnreachablePropagation.panic-unwind.diff

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

66 lines
1.4 KiB
Diff
Raw Normal View History

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