mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
30 lines
532 B
Diff
30 lines
532 B
Diff
- // MIR for `main` before SimplifyConstCondition-after-const-prop
|
|
+ // MIR for `main` after SimplifyConstCondition-after-const-prop
|
|
|
|
fn main() -> () {
|
|
let mut _0: ();
|
|
let _1: ();
|
|
|
|
bb0: {
|
|
- switchInt(const false) -> [0: bb3, otherwise: bb1];
|
|
+ goto -> bb3;
|
|
}
|
|
|
|
bb1: {
|
|
_1 = noop() -> [return: bb2, unwind unreachable];
|
|
}
|
|
|
|
bb2: {
|
|
goto -> bb4;
|
|
}
|
|
|
|
bb3: {
|
|
goto -> bb4;
|
|
}
|
|
|
|
bb4: {
|
|
return;
|
|
}
|
|
}
|
|
|