summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/building/custom/enums.switch_bool.built.after.mir
blob: f82e5f1c6fd0a78b261bff73cb71debe7401804e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// MIR for `switch_bool` after built

fn switch_bool(_1: bool) -> u32 {
    let mut _0: u32;

    bb0: {
        switchInt(_1) -> [1: bb1, 0: bb2, otherwise: bb2];
    }

    bb1: {
        _0 = const 5_u32;
        return;
    }

    bb2: {
        _0 = const 10_u32;
        return;
    }
}