rust/tests/mir-opt/remove_zsts.get_union.Remov...

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

21 lines
397 B
Diff
Raw Normal View History

- // MIR for `get_union` before RemoveZsts
+ // MIR for `get_union` after RemoveZsts
fn get_union() -> Foo {
2023-06-06 21:47:00 +08:00
let mut _0: Foo;
let mut _1: ();
bb0: {
2023-06-06 21:47:00 +08:00
- StorageLive(_1);
- _1 = ();
- _0 = Foo { x: move _1 };
- StorageDead(_1);
+ nop;
+ nop;
+ _0 = Foo { x: const () };
+ nop;
return;
}
}