rust/tests/mir-opt/const_prop/transmute.unreachable_ref.ConstProp.64bit.diff

21 lines
415 B
Diff
Raw Normal View History

- // MIR for `unreachable_ref` before ConstProp
+ // MIR for `unreachable_ref` after ConstProp
fn unreachable_ref() -> ! {
2023-06-06 08:47:00 -05:00
let mut _0: !;
let _1: &Never;
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
}
scope 2 {
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
- _1 = const 1_usize as &Never (Transmute);
+ _1 = const {0x1 as &Never};
unreachable;
}
}