summary refs log tree commit diff
path: root/src/test/mir-opt/match_test.rs
blob: 1ca75b100410b51a05b1d0d6e28364bdf4e3dbd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Make sure redundant testing paths in `match` expressions are sorted out.

#![feature(exclusive_range_pattern)]

fn main() {
    let x = 3;
    let b = true;

    // When `(0..=10).contains(x) && !b`, we should jump to the last arm
    // without testing two other candidates.
    match x {
        0..10 if b => 0,
        10..=20 => 1,
        -1 => 2,
        _ => 3,
    };
}

// END RUST SOURCE
// START rustc.main.SimplifyCfg-initial.after.mir
//    bb0: {
//        ...
//        switchInt(move _6) -> [false: bb6, otherwise: bb5];
//    }
//    bb1: {
//        falseEdges -> [real: bb9, imaginary: bb2];
//    }
//    bb2: {
//        falseEdges -> [real: bb12, imaginary: bb3];
//    }
//    bb3: {
//        falseEdges -> [real: bb13, imaginary: bb4];
//    }
//    bb4: {
//        _3 = const 3i32;
//        goto -> bb14;
//    }
//    bb5: {
//        _7 = Lt(_1, const 10i32);
//        switchInt(move _7) -> [false: bb6, otherwise: bb1];
//    }
//    bb6: {
//        _4 = Le(const 10i32, _1);
//        switchInt(move _4) -> [false: bb8, otherwise: bb7];
//    }
//    bb7: {
//        _5 = Le(_1, const 20i32);
//        switchInt(move _5) -> [false: bb8, otherwise: bb2];
//    }
//    bb8: {
//        switchInt(_1) -> [-1i32: bb3, otherwise: bb4];
//    }
//    bb9: {
//        _8 = &shallow _1;
//        StorageLive(_9);
//        _9 = _2;
//        switchInt(move _9) -> [false: bb11, otherwise: bb10];
//    }
//    bb10: {
//        StorageDead(_9);
//        FakeRead(ForMatchGuard, _8);
//        _3 = const 0i32;
//        goto -> bb14;
//    }
//    bb11: {
//        StorageDead(_9);
//        falseEdges -> [real: bb4, imaginary: bb2];
//    }
//    bb12: {
//        _3 = const 1i32;
//        goto -> bb14;
//    }
//    bb13: {
//        _3 = const 2i32;
//        goto -> bb14;
//    }
//    bb14: {
//        StorageDead(_3);
//        _0 = ();
//        StorageDead(_2);
//        StorageDead(_1);
//        return;
//    }
// END rustc.main.SimplifyCfg-initial.after.mir