mirror of https://github.com/rust-lang/rust.git
29 lines
630 B
Diff
29 lines
630 B
Diff
- // MIR for `main` before SimplifyConstCondition-after-const-prop
|
|
+ // MIR for `main` after SimplifyConstCondition-after-const-prop
|
|
|
|
fn main() -> () {
|
|
let mut _0: ();
|
|
let mut _1: i32;
|
|
|
|
bb0: {
|
|
StorageLive(_1);
|
|
_1 = const 1_i32;
|
|
- switchInt(const 1_i32) -> [1: bb2, otherwise: bb1];
|
|
+ goto -> bb2;
|
|
}
|
|
|
|
bb1: {
|
|
_0 = foo(const -1_i32) -> [return: bb3, unwind unreachable];
|
|
}
|
|
|
|
bb2: {
|
|
_0 = foo(const 0_i32) -> [return: bb3, unwind unreachable];
|
|
}
|
|
|
|
bb3: {
|
|
StorageDead(_1);
|
|
return;
|
|
}
|
|
}
|
|
|