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: {
|
2023-06-06 09:47:00 -04:00
|
|
|
- StorageLive(_2);
|
|
|
|
+ nop;
|
|
|
|
StorageLive(_3);
|
|
|
|
_3 = _1;
|
2023-06-23 17:53:09 +01:00
|
|
|
- _2 = dummy(move _3) -> [return: bb1, unwind continue];
|
|
|
|
+ _1 = dummy(move _3) -> [return: bb1, unwind continue];
|
2020-04-02 21:09:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bb1: {
|
2023-06-06 09:47:00 -04:00
|
|
|
StorageDead(_3);
|
|
|
|
- _1 = move _2;
|
|
|
|
- StorageDead(_2);
|
|
|
|
+ nop;
|
|
|
|
+ nop;
|
|
|
|
_0 = const ();
|
|
|
|
return;
|
2020-04-02 21:09:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|