rust/tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff

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

31 lines
593 B
Diff
Raw Normal View History

- // MIR for `dont_opt_bool` before SimplifyComparisonIntegral
+ // MIR for `dont_opt_bool` after SimplifyComparisonIntegral
fn dont_opt_bool(_1: bool) -> u32 {
2023-06-06 08:47:00 -05:00
debug x => _1;
let mut _0: u32;
let mut _2: bool;
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
_2 = copy _1;
switchInt(move _2) -> [0: bb2, otherwise: bb1];
}
bb1: {
2023-06-06 08:47:00 -05:00
_0 = const 0_u32;
goto -> bb3;
}
bb2: {
2023-06-06 08:47:00 -05:00
_0 = const 1_u32;
goto -> bb3;
}
bb3: {
2023-06-06 08:47:00 -05:00
StorageDead(_2);
return;
}
}