rust/tests/mir-opt/equal_true.opt.InstSimplify.diff

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

36 lines
672 B
Diff
Raw Normal View History

2023-05-07 03:20:58 +00:00
- // MIR for `opt` before InstSimplify
+ // MIR for `opt` after InstSimplify
fn opt(_1: bool) -> i32 {
2023-06-06 13:47:00 +00:00
debug x => _1;
let mut _0: i32;
let mut _2: bool;
let mut _3: bool;
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_2);
StorageLive(_3);
_3 = _1;
- _2 = Eq(move _3, const true);
+ _2 = move _3;
StorageDead(_3);
switchInt(move _2) -> [0: bb2, otherwise: bb1];
}
bb1: {
2023-06-06 13:47:00 +00:00
_0 = const 0_i32;
goto -> bb3;
}
bb2: {
2023-06-06 13:47:00 +00:00
_0 = const 1_i32;
goto -> bb3;
}
bb3: {
2023-06-06 13:47:00 +00:00
StorageDead(_2);
return;
}
}