rust/tests/mir-opt/dead-store-elimination/call_arg_copy.move_simple.DeadStoreElimination-final.panic-unwind.diff

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

24 lines
571 B
Diff
Raw Normal View History

- // MIR for `move_simple` before DeadStoreElimination-final
+ // MIR for `move_simple` after DeadStoreElimination-final
2023-07-16 08:11:10 -05:00
fn move_simple(_1: i32) -> () {
debug x => _1;
let mut _0: ();
let _2: ();
let mut _3: i32;
let mut _4: i32;
2023-07-16 08:11:10 -05:00
bb0: {
StorageLive(_2);
- _2 = use_both(copy _1, copy _1) -> [return: bb1, unwind continue];
+ _2 = use_both(copy _1, move _1) -> [return: bb1, unwind continue];
}
bb1: {
StorageDead(_2);
_0 = const ();
return;
}
}