summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/uninhabited_enum_branching2.main.SimplifyCfg-after-uninhabited-enum-branching.after.mir
blob: 9c0c5d18917ae7cfbdd62ea6e4d809fb6a9b2917 (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
85
// MIR for `main` after SimplifyCfg-after-uninhabited-enum-branching

fn main() -> () {
    let mut _0: ();
    let _1: Plop;
    let mut _2: Test1;
    let _3: &str;
    let mut _4: &Test1;
    let mut _5: isize;
    let _6: &str;
    let _7: &str;
    let _8: &str;
    let _9: &str;
    let mut _10: isize;
    let _11: &str;
    let _12: &str;
    let _13: &str;
    scope 1 {
        debug plop => _1;
    }

    bb0: {
        StorageLive(_1);
        StorageLive(_2);
        _2 = Test1::C;
        _1 = Plop { xx: const 51_u32, test1: move _2 };
        StorageDead(_2);
        StorageLive(_3);
        StorageLive(_4);
        _4 = &(_1.1: Test1);
        _5 = discriminant((*_4));
        switchInt(move _5) -> [2: bb3, 3: bb1, otherwise: bb2];
    }

    bb1: {
        StorageLive(_8);
        _8 = const "D";
        _3 = &(*_8);
        StorageDead(_8);
        goto -> bb4;
    }

    bb2: {
        unreachable;
    }

    bb3: {
        StorageLive(_7);
        _7 = const "C";
        _3 = &(*_7);
        StorageDead(_7);
        goto -> bb4;
    }

    bb4: {
        StorageDead(_4);
        StorageDead(_3);
        StorageLive(_9);
        _10 = discriminant((_1.1: Test1));
        switchInt(move _10) -> [2: bb6, 3: bb5, otherwise: bb2];
    }

    bb5: {
        StorageLive(_13);
        _13 = const "D";
        _9 = &(*_13);
        StorageDead(_13);
        goto -> bb7;
    }

    bb6: {
        StorageLive(_12);
        _12 = const "C";
        _9 = &(*_12);
        StorageDead(_12);
        goto -> bb7;
    }

    bb7: {
        StorageDead(_9);
        _0 = const ();
        StorageDead(_1);
        return;
    }
}