rust/tests/mir-opt/copy-prop/move_projection.f.CopyProp.panic-unwind.diff

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

26 lines
575 B
Diff
Raw Normal View History

- // MIR for `f` before CopyProp
+ // MIR for `f` after CopyProp
fn f(_1: Foo) -> bool {
2023-06-06 08:47:00 -05:00
let mut _0: bool;
let mut _2: Foo;
let mut _3: u8;
bb0: {
2023-06-06 08:47:00 -05:00
- _2 = copy _1;
- _3 = move (_2.0: u8);
- _0 = opaque::<Foo>(move _1) -> [return: bb1, unwind unreachable];
2023-06-06 08:47:00 -05:00
+ _3 = copy (_1.0: u8);
+ _0 = opaque::<Foo>(copy _1) -> [return: bb1, unwind unreachable];
}
bb1: {
_0 = opaque::<u8>(move _3) -> [return: bb2, unwind unreachable];
}
bb2: {
2023-06-06 08:47:00 -05:00
return;
}
}