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

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

18 lines
468 B
Diff
Raw Normal View History

- // MIR for `read_via_copy_uninhabited` before LowerIntrinsics
+ // MIR for `read_via_copy_uninhabited` after LowerIntrinsics
fn read_via_copy_uninhabited(_1: &Never) -> Never {
2023-06-06 13:47:00 +00:00
debug r => _1;
let mut _0: Never;
let mut _2: *const Never;
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_2);
_2 = &raw const (*_1);
- _0 = read_via_copy::<Never>(move _2) -> unwind unreachable;
+ _0 = (*_2);
2023-06-06 13:47:00 +00:00
+ unreachable;
}
}