rust/tests/mir-opt/copy-prop/custom_move_arg.f.CopyProp.panic-abort.diff

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

26 lines
637 B
Diff
Raw Normal View History

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