rust/tests/mir-opt/copy-prop/cycle.main.CopyProp.panic-unwind.diff

55 lines
1.2 KiB
Diff
Raw Permalink Normal View History

2023-01-15 09:30:09 -06:00
- // MIR for `main` before CopyProp
+ // MIR for `main` after CopyProp
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let mut _1: i32;
let mut _4: i32;
let _5: ();
let mut _6: i32;
2023-01-15 09:30:09 -06:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
let _2: i32;
2023-01-15 09:30:09 -06:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug y => _2;
let _3: i32;
2023-01-15 09:30:09 -06:00
scope 3 {
2023-06-06 08:47:00 -05:00
- debug z => _3;
+ debug z => _2;
2023-01-15 09:30:09 -06:00
}
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
2023-06-23 11:53:09 -05:00
_1 = val() -> [return: bb1, unwind continue];
2023-01-15 09:30:09 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
- StorageLive(_2);
2024-08-18 16:26:34 -05:00
_2 = copy _1;
2023-06-06 08:47:00 -05:00
- StorageLive(_3);
2024-08-18 16:26:34 -05:00
- _3 = copy _2;
2023-06-06 08:47:00 -05:00
- StorageLive(_4);
2024-08-18 16:26:34 -05:00
- _4 = copy _3;
2023-06-06 08:47:00 -05:00
- _1 = move _4;
- StorageDead(_4);
2024-08-18 16:26:34 -05:00
+ _1 = copy _2;
2023-06-06 08:47:00 -05:00
StorageLive(_5);
StorageLive(_6);
2024-08-18 16:26:34 -05:00
_6 = copy _1;
2023-06-23 11:53:09 -05:00
_5 = std::mem::drop::<i32>(move _6) -> [return: bb2, unwind continue];
2023-01-15 09:30:09 -06:00
}
bb2: {
2023-06-06 08:47:00 -05:00
StorageDead(_6);
StorageDead(_5);
_0 = const ();
- StorageDead(_3);
- StorageDead(_2);
StorageDead(_1);
return;
2023-01-15 09:30:09 -06:00
}
}