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

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

72 lines
4.3 KiB
Diff
Raw Normal View History

2020-04-02 16:09:01 -05:00
- // MIR for `main` before UnreachablePropagation
+ // MIR for `main` after UnreachablePropagation
fn main() -> () {
2022-07-27 13:47:42 -05:00
let mut _0: (); // return place in scope 0 at $DIR/unreachable_diverging.rs:+0:11: +0:11
let _1: bool; // in scope 0 at $DIR/unreachable_diverging.rs:+1:9: +1:10
let mut _2: std::option::Option<Empty>; // in scope 0 at $DIR/unreachable_diverging.rs:+2:25: +2:32
let mut _3: isize; // in scope 0 at $DIR/unreachable_diverging.rs:+2:12: +2:22
let _5: (); // in scope 0 at $DIR/unreachable_diverging.rs:+3:9: +5:10
let mut _6: bool; // in scope 0 at $DIR/unreachable_diverging.rs:+3:12: +3:13
let mut _7: !; // in scope 0 at $DIR/unreachable_diverging.rs:+6:9: +6:22
2020-04-02 16:09:01 -05:00
scope 1 {
2022-07-27 13:47:42 -05:00
debug x => _1; // in scope 1 at $DIR/unreachable_diverging.rs:+1:9: +1:10
2020-04-02 16:09:01 -05:00
scope 2 {
2022-07-27 13:47:42 -05:00
debug bomb => _4; // in scope 2 at $DIR/unreachable_diverging.rs:+2:17: +2:21
let _4: Empty; // in scope 2 at $DIR/unreachable_diverging.rs:+2:17: +2:21
2020-04-02 16:09:01 -05:00
}
}
bb0: {
2022-07-27 13:47:42 -05:00
StorageLive(_1); // scope 0 at $DIR/unreachable_diverging.rs:+1:9: +1:10
_1 = const true; // scope 0 at $DIR/unreachable_diverging.rs:+1:13: +1:17
StorageLive(_2); // scope 2 at $DIR/unreachable_diverging.rs:+2:25: +2:32
_2 = empty() -> bb1; // scope 2 at $DIR/unreachable_diverging.rs:+2:25: +2:32
2020-04-02 16:09:01 -05:00
// mir::Constant
2023-04-05 03:44:20 -05:00
// + span: $DIR/unreachable_diverging.rs:15:25: 15:30
2022-07-06 09:14:46 -05:00
// + literal: Const { ty: fn() -> Option<Empty> {empty}, val: Value(<ZST>) }
2020-04-02 16:09:01 -05:00
}
bb1: {
2022-07-27 13:47:42 -05:00
_3 = discriminant(_2); // scope 2 at $DIR/unreachable_diverging.rs:+2:12: +2:22
switchInt(move _3) -> [1: bb2, otherwise: bb6]; // scope 2 at $DIR/unreachable_diverging.rs:+2:12: +2:22
2020-04-02 16:09:01 -05:00
}
bb2: {
2022-07-27 13:47:42 -05:00
StorageLive(_4); // scope 2 at $DIR/unreachable_diverging.rs:+2:17: +2:21
_4 = move ((_2 as Some).0: Empty); // scope 2 at $DIR/unreachable_diverging.rs:+2:17: +2:21
StorageLive(_5); // scope 2 at $DIR/unreachable_diverging.rs:+3:9: +5:10
StorageLive(_6); // scope 2 at $DIR/unreachable_diverging.rs:+3:12: +3:13
_6 = _1; // scope 2 at $DIR/unreachable_diverging.rs:+3:12: +3:13
switchInt(move _6) -> [0: bb4, otherwise: bb3]; // scope 2 at $DIR/unreachable_diverging.rs:+3:12: +3:13
2020-04-02 16:09:01 -05:00
}
bb3: {
2022-07-26 08:17:02 -05:00
_5 = loop_forever() -> bb5; // scope 2 at $DIR/unreachable_diverging.rs:+4:13: +4:27
2020-08-20 04:25:06 -05:00
// mir::Constant
2023-04-05 03:44:20 -05:00
// + span: $DIR/unreachable_diverging.rs:17:13: 17:25
2022-07-06 09:14:46 -05:00
// + literal: Const { ty: fn() {loop_forever}, val: Value(<ZST>) }
2020-04-02 16:09:01 -05:00
}
bb4: {
2022-07-27 13:47:42 -05:00
- _5 = const (); // scope 2 at $DIR/unreachable_diverging.rs:+5:10: +5:10
- goto -> bb5; // scope 2 at $DIR/unreachable_diverging.rs:+3:9: +5:10
2022-07-26 08:17:02 -05:00
+ unreachable; // scope 2 at $DIR/unreachable_diverging.rs:+3:9: +5:10
}
bb5: {
- StorageDead(_6); // scope 2 at $DIR/unreachable_diverging.rs:+5:9: +5:10
- StorageDead(_5); // scope 2 at $DIR/unreachable_diverging.rs:+5:9: +5:10
- StorageLive(_7); // scope 2 at $DIR/unreachable_diverging.rs:+6:9: +6:22
2022-07-27 13:47:42 -05:00
unreachable; // scope 2 at $DIR/unreachable_diverging.rs:+6:15: +6:19
2020-04-02 16:09:01 -05:00
}
2022-07-26 08:17:02 -05:00
bb6: {
2022-07-27 13:47:42 -05:00
_0 = const (); // scope 1 at $DIR/unreachable_diverging.rs:+7:6: +7:6
StorageDead(_1); // scope 0 at $DIR/unreachable_diverging.rs:+8:1: +8:2
StorageDead(_2); // scope 0 at $DIR/unreachable_diverging.rs:+8:1: +8:2
return; // scope 0 at $DIR/unreachable_diverging.rs:+8:2: +8:2
}
2020-04-02 16:09:01 -05:00
}