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

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

30 lines
646 B
Diff
Raw Normal View History

2020-10-16 19:25:31 -05:00
- // MIR for `bar` before DestinationPropagation
+ // MIR for `bar` after DestinationPropagation
2020-04-02 16:09:01 -05:00
fn bar(_1: u8) -> () {
2023-06-06 08:47:00 -05:00
debug x => _1;
let mut _0: ();
let _2: u8;
let mut _3: u8;
2020-04-02 16:09:01 -05:00
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
- StorageLive(_3);
- _3 = copy _1;
- _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: {
2023-06-06 08:47:00 -05:00
- StorageDead(_3);
+ nop;
StorageDead(_2);
_1 = const 5_u8;
_0 = const ();
return;
2020-04-02 16:09:01 -05:00
}
}