rust/tests/mir-opt/remove_fake_borrows.match_guard.CleanupPostBorrowck.panic-unwind.diff

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

74 lines
1.7 KiB
Diff
Raw Normal View History

2022-12-16 18:00:00 -06:00
- // MIR for `match_guard` before CleanupPostBorrowck
+ // MIR for `match_guard` after CleanupPostBorrowck
2020-04-02 16:09:01 -05:00
fn match_guard(_1: Option<&&i32>, _2: bool) -> i32 {
2023-06-06 08:47:00 -05:00
debug x => _1;
debug c => _2;
let mut _0: i32;
2024-04-06 18:23:39 -05:00
let mut _3: &std::option::Option<&&i32>;
let mut _4: &i32;
2023-06-06 08:47:00 -05:00
let mut _5: &&i32;
let mut _6: &&&i32;
2024-04-06 18:23:39 -05:00
let mut _7: isize;
2023-06-06 08:47:00 -05:00
let mut _8: bool;
2020-04-02 16:09:01 -05:00
bb0: {
PlaceMention(_1);
2024-04-06 18:23:39 -05:00
_7 = discriminant(_1);
switchInt(move _7) -> [1: bb2, otherwise: bb1];
2020-04-02 16:09:01 -05:00
}
bb1: {
2023-06-06 08:47:00 -05:00
_0 = const 1_i32;
goto -> bb7;
2020-04-02 16:09:01 -05:00
}
bb2: {
2023-06-06 08:47:00 -05:00
switchInt(copy (*(*((_1 as Some).0: &&i32)))) -> [0: bb3, otherwise: bb1];
2020-04-02 16:09:01 -05:00
}
bb3: {
2023-06-06 08:47:00 -05:00
- falseEdge -> [real: bb4, imaginary: bb1];
+ goto -> bb4;
2020-04-02 16:09:01 -05:00
}
bb4: {
2024-04-06 17:30:28 -05:00
- _3 = &fake shallow _1;
- _4 = &fake shallow (*(*((_1 as Some).0: &&i32)));
- _5 = &fake shallow (*((_1 as Some).0: &&i32));
- _6 = &fake shallow ((_1 as Some).0: &&i32);
2023-06-06 08:47:00 -05:00
+ nop;
+ nop;
+ nop;
+ nop;
StorageLive(_8);
_8 = copy _2;
switchInt(move _8) -> [0: bb6, otherwise: bb5];
2020-04-02 16:09:01 -05:00
}
bb5: {
2023-06-06 08:47:00 -05:00
StorageDead(_8);
2024-04-06 18:23:39 -05:00
- FakeRead(ForMatchGuard, _3);
2023-06-06 08:47:00 -05:00
- FakeRead(ForMatchGuard, _4);
- FakeRead(ForMatchGuard, _5);
- FakeRead(ForMatchGuard, _6);
+ nop;
+ nop;
+ nop;
+ nop;
_0 = const 0_i32;
goto -> bb7;
2020-04-02 16:09:01 -05:00
}
bb6: {
2023-06-06 08:47:00 -05:00
StorageDead(_8);
- falseEdge -> [real: bb1, imaginary: bb1];
+ goto -> bb1;
2020-04-02 16:09:01 -05:00
}
bb7: {
2023-06-06 08:47:00 -05:00
return;
2020-04-02 16:09:01 -05:00
}
}