rust/tests/mir-opt/copy-prop/copy_propagation_arg.baz.CopyProp.panic-unwind.diff

19 lines
341 B
Diff
Raw Normal View History

2023-01-15 09:30:09 -06:00
- // MIR for `baz` before CopyProp
+ // MIR for `baz` after CopyProp
fn baz(_1: i32) -> i32 {
2023-06-06 08:47:00 -05:00
debug x => _1;
let mut _0: i32;
let mut _2: i32;
2023-01-15 09:30:09 -06:00
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
2024-08-18 16:26:34 -05:00
_2 = copy _1;
2023-06-06 08:47:00 -05:00
_1 = move _2;
StorageDead(_2);
2024-08-18 16:26:34 -05:00
_0 = copy _1;
2023-06-06 08:47:00 -05:00
return;
2023-01-15 09:30:09 -06:00
}
}