rust/tests/mir-opt/dest-prop/copy_propagation_arg.baz.DestinationPropagation.panic-abort.diff

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

23 lines
429 B
Diff
Raw Permalink Normal View History

2020-10-16 19:25:31 -05:00
- // MIR for `baz` before DestinationPropagation
+ // MIR for `baz` after DestinationPropagation
fn baz(_1: i32) -> i32 {
2023-06-06 08:47:00 -05:00
debug x => _1;
let mut _0: i32;
let mut _2: i32;
2020-10-16 19:25:31 -05:00
bb0: {
2023-06-06 08:47:00 -05:00
- StorageLive(_2);
- _2 = copy _1;
- _1 = move _2;
- StorageDead(_2);
+ nop;
+ nop;
+ nop;
+ nop;
_0 = copy _1;
return;
2020-10-16 19:25:31 -05:00
}
}