rust/tests/mir-opt/building/simple_match.match_bool.built.after.mir

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

30 lines
468 B
Rust
Raw Normal View History

// MIR for `match_bool` after built
2020-04-02 16:09:01 -05:00
fn match_bool(_1: bool) -> usize {
2023-06-06 08:47:00 -05:00
debug x => _1;
let mut _0: usize;
2020-04-02 16:09:01 -05:00
bb0: {
2023-06-06 08:47:00 -05:00
FakeRead(ForMatchedPlace(None), _1);
switchInt(_1) -> [0: bb2, otherwise: bb1];
2020-04-02 16:09:01 -05:00
}
2020-10-02 15:11:24 -05:00
bb1: {
2023-06-06 08:47:00 -05:00
falseEdge -> [real: bb3, imaginary: bb2];
2020-04-02 16:09:01 -05:00
}
bb2: {
2023-06-06 08:47:00 -05:00
_0 = const 20_usize;
goto -> bb4;
2020-04-02 16:09:01 -05:00
}
2020-10-02 15:11:24 -05:00
bb3: {
2023-06-06 08:47:00 -05:00
_0 = const 10_usize;
goto -> bb4;
}
2020-10-02 15:11:24 -05:00
bb4: {
2023-06-06 08:47:00 -05:00
return;
2020-04-02 16:09:01 -05:00
}
}