rust/tests/mir-opt/dest-prop/copy_propagation_arg.foo.DestinationPropagation.panic-unwind.diff

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

30 lines
636 B
Diff
Raw Normal View History

2020-10-17 02:25:31 +02:00
- // MIR for `foo` before DestinationPropagation
+ // MIR for `foo` after DestinationPropagation
2020-04-02 21:09:01 +00:00
fn foo(_1: u8) -> () {
2023-06-06 09:47:00 -04:00
debug x => _1;
let mut _0: ();
let mut _2: u8;
let mut _3: u8;
2020-04-02 21:09:01 +00:00
bb0: {
StorageLive(_2);
- StorageLive(_3);
- _3 = _1;
2023-06-23 17:53:09 +01:00
- _2 = dummy(move _3) -> [return: bb1, unwind continue];
+ nop;
+ nop;
+ _2 = dummy(move _1) -> [return: bb1, unwind continue];
2020-04-02 21:09:01 +00:00
}
bb1: {
- StorageDead(_3);
2023-06-06 09:47:00 -04:00
+ nop;
_1 = move _2;
StorageDead(_2);
2023-06-06 09:47:00 -04:00
_0 = const ();
return;
2020-04-02 21:09:01 +00:00
}
}