rust/tests/mir-opt/const_prop/switch_int.main.ConstProp.panic-unwind.diff
2023-06-23 18:36:25 +01:00

29 lines
594 B
Diff

- // MIR for `main` before ConstProp
+ // MIR for `main` after ConstProp
fn main() -> () {
let mut _0: ();
let mut _1: i32;
bb0: {
StorageLive(_1);
_1 = const 1_i32;
- switchInt(_1) -> [1: bb2, otherwise: bb1];
+ switchInt(const 1_i32) -> [1: bb2, otherwise: bb1];
}
bb1: {
_0 = foo(const -1_i32) -> [return: bb3, unwind continue];
}
bb2: {
_0 = foo(const 0_i32) -> [return: bb3, unwind continue];
}
bb3: {
StorageDead(_1);
return;
}
}