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

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

30 lines
647 B
Diff
Raw Normal View History

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