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

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

25 lines
589 B
Diff
Raw Normal View History

- // MIR for `transmute_inhabited` before LowerIntrinsics
+ // MIR for `transmute_inhabited` after LowerIntrinsics
fn transmute_inhabited(_1: std::cmp::Ordering) -> i8 {
2023-06-06 21:47:00 +08:00
debug c => _1;
let mut _0: i8;
let mut _2: std::cmp::Ordering;
scope 1 {
}
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_2);
_2 = _1;
- _0 = transmute::<std::cmp::Ordering, i8>(move _2) -> [return: bb1, unwind unreachable];
+ _0 = move _2 as i8 (Transmute);
+ goto -> bb1;
}
bb1: {
2023-06-06 21:47:00 +08:00
StorageDead(_2);
return;
}
}