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

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

23 lines
446 B
Diff
Raw Normal View History

- // MIR for `unreachable_direct` before ConstProp
+ // MIR for `unreachable_direct` after ConstProp
fn unreachable_direct() -> ! {
2023-06-06 08:47:00 -05:00
let mut _0: !;
let _1: Never;
let mut _2: ();
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);
StorageLive(_2);
_2 = ();
_1 = move _2 as Never (Transmute);
unreachable;
}
}