rust/tests/mir-opt/lower_intrinsics.transmute_...

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

24 lines
589 B
Diff
Raw Normal View History

- // MIR for `transmute_to_mut_uninhabited` before LowerIntrinsics
+ // MIR for `transmute_to_mut_uninhabited` after LowerIntrinsics
fn transmute_to_mut_uninhabited() -> ! {
2023-06-06 21:47:00 +08:00
let mut _0: !;
let _1: &mut Never;
scope 1 {
2023-06-06 21:47:00 +08:00
debug x => _1;
}
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_1);
- _1 = transmute::<usize, &mut Never>(const 1_usize) -> [return: bb1, unwind unreachable];
+ _1 = const 1_usize as &mut Never (Transmute);
+ goto -> bb1;
}
bb1: {
PlaceMention((*_1));
2023-06-06 21:47:00 +08:00
unreachable;
}
}