rust/tests/mir-opt/copy-prop/non_dominate.f.CopyProp.diff

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

30 lines
492 B
Diff
Raw Normal View History

- // MIR for `f` before CopyProp
+ // MIR for `f` after CopyProp
fn f(_1: bool) -> bool {
2023-06-06 08:47:00 -05:00
let mut _0: bool;
let mut _2: bool;
let mut _3: bool;
bb0: {
2023-06-06 08:47:00 -05:00
goto -> bb1;
}
bb1: {
2023-06-06 08:47:00 -05:00
_3 = copy _1;
switchInt(copy _3) -> [0: bb3, otherwise: bb2];
}
bb2: {
2023-06-06 08:47:00 -05:00
_2 = copy _3;
_1 = const false;
goto -> bb1;
}
bb3: {
2023-06-06 08:47:00 -05:00
_0 = copy _2;
return;
}
}