rust/tests/mir-opt/building/custom/enums.switch_option.built.after.mir

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

22 lines
362 B
Rust
Raw Normal View History

// MIR for `switch_option` after built
fn switch_option(_1: Option<()>) -> bool {
2023-06-06 08:47:00 -05:00
let mut _0: bool;
let mut _2: isize;
bb0: {
2023-06-06 08:47:00 -05:00
_2 = discriminant(_1);
switchInt(copy _2) -> [0: bb1, 1: bb2, otherwise: bb2];
}
bb1: {
2023-06-06 08:47:00 -05:00
_0 = const false;
return;
}
bb2: {
2023-06-06 08:47:00 -05:00
_0 = const true;
return;
}
}