rust/tests/mir-opt/simplify_if.main.SimplifyConstCondition-after-const-prop.panic-abort.diff

34 lines
638 B
Diff
Raw Normal View History

2021-11-30 18:54:37 -08:00
- // MIR for `main` before SimplifyConstCondition-after-const-prop
+ // MIR for `main` after SimplifyConstCondition-after-const-prop
2020-04-02 21:09:01 +00:00
fn main() -> () {
2023-06-06 09:47:00 -04:00
let mut _0: ();
let mut _1: bool;
let _2: ();
2020-04-02 21:09:01 +00:00
bb0: {
2023-06-06 09:47:00 -04:00
StorageLive(_1);
_1 = const false;
- switchInt(const false) -> [0: bb3, otherwise: bb1];
+ goto -> bb3;
2020-04-02 21:09:01 +00:00
}
bb1: {
2023-06-06 09:47:00 -04:00
_2 = noop() -> [return: bb2, unwind unreachable];
2020-04-02 21:09:01 +00:00
}
2021-01-01 15:38:11 -03:00
bb2: {
2023-06-06 09:47:00 -04:00
goto -> bb4;
2021-01-01 15:38:11 -03:00
}
2020-04-02 21:09:01 +00:00
bb3: {
2023-06-06 09:47:00 -04:00
goto -> bb4;
2020-04-02 21:09:01 +00:00
}
bb4: {
2023-06-06 09:47:00 -04:00
StorageDead(_1);
return;
2020-04-02 21:09:01 +00:00
}
}