1
Fork 0
rust/tests/mir-opt/copy-prop/move_arg.f.CopyProp.panic-unwind.diff

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

38 lines
820 B
Diff
Raw Permalink Normal View History

2023-01-15 15:30:09 +00:00
- // MIR for `f` before CopyProp
+ // MIR for `f` after CopyProp
fn f(_1: T) -> () {
2023-06-06 09:47:00 -04:00
debug a => _1;
let mut _0: ();
let _2: T;
let _3: ();
let mut _4: T;
let mut _5: T;
2023-01-15 15:30:09 +00:00
scope 1 {
2023-06-06 09:47:00 -04:00
- debug b => _2;
+ debug b => _1;
2023-01-15 15:30:09 +00:00
}
bb0: {
2023-06-06 09:47:00 -04:00
- StorageLive(_2);
- _2 = copy _1;
StorageLive(_3);
- StorageLive(_4);
- _4 = copy _1;
- StorageLive(_5);
- _5 = copy _2;
2023-06-23 17:53:09 +01:00
- _3 = g::<T>(move _4, move _5) -> [return: bb1, unwind continue];
+ _3 = g::<T>(copy _1, copy _1) -> [return: bb1, unwind continue];
2023-01-15 15:30:09 +00:00
}
bb1: {
2023-06-06 09:47:00 -04:00
- StorageDead(_5);
- StorageDead(_4);
StorageDead(_3);
_0 = const ();
- StorageDead(_2);
return;
2023-01-15 15:30:09 +00:00
}
}