rust/tests/mir-opt/dest-prop/union.main.DestinationPropagation.panic-abort.diff

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

32 lines
694 B
Diff
Raw Normal View History

2020-05-24 21:37:09 +02:00
- // MIR for `main` before DestinationPropagation
+ // MIR for `main` after DestinationPropagation
fn main() -> () {
2023-06-06 09:47:00 -04:00
let mut _0: ();
let _1: main::Un;
2023-09-20 21:43:33 +00:00
let mut _2: u32;
let mut _3: u32;
2020-05-24 21:37:09 +02:00
scope 1 {
2023-06-06 09:47:00 -04:00
debug un => _1;
scope 3 (inlined std::mem::drop::<u32>) {
debug _x => _3;
2020-05-24 21:37:09 +02:00
}
}
scope 2 (inlined val) {
}
2020-05-24 21:37:09 +02:00
bb0: {
2023-06-06 09:47:00 -04:00
StorageLive(_1);
2023-09-20 21:43:33 +00:00
StorageLive(_2);
2024-06-02 19:41:00 -07:00
nop;
_1 = Un { us: const 1_u32 };
2023-09-20 21:43:33 +00:00
StorageDead(_2);
StorageLive(_3);
_3 = copy (_1.0: u32);
StorageDead(_3);
2023-06-06 09:47:00 -04:00
StorageDead(_1);
return;
2020-05-24 21:37:09 +02:00
}
}