rust/tests/mir-opt/pre-codegen/duplicate_switch_targets.ub_if_b.PreCodegen.after.mir

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

28 lines
496 B
Rust
Raw Normal View History

// MIR for `ub_if_b` after PreCodegen
fn ub_if_b(_1: Thing) -> Thing {
2023-06-06 08:47:00 -05:00
debug t => _1;
let mut _0: Thing;
let mut _2: isize;
scope 1 (inlined unreachable_unchecked) {
scope 2 {
2023-06-06 08:47:00 -05:00
scope 3 (inlined unreachable_unchecked::runtime) {
}
}
}
bb0: {
2023-06-06 08:47:00 -05:00
_2 = discriminant(_1);
switchInt(move _2) -> [0: bb1, otherwise: bb2];
}
bb1: {
2023-06-06 08:47:00 -05:00
_0 = move _1;
return;
}
bb2: {
2023-06-06 08:47:00 -05:00
unreachable;
}
}