rust/tests/mir-opt/lower_intrinsics.transmute_uninhabited.LowerIntrinsics.panic-abort.diff

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

18 lines
473 B
Diff
Raw Normal View History

- // MIR for `transmute_uninhabited` before LowerIntrinsics
+ // MIR for `transmute_uninhabited` after LowerIntrinsics
fn transmute_uninhabited(_1: ()) -> Never {
2023-06-06 13:47:00 +00:00
debug u => _1;
let mut _0: Never;
let mut _2: ();
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_2);
_2 = copy _1;
- _0 = std::intrinsics::transmute::<(), Never>(move _2) -> unwind unreachable;
2023-06-06 13:47:00 +00:00
+ _0 = move _2 as Never (Transmute);
+ unreachable;
}
}