about summary refs log tree commit diff
path: root/tests/mir-opt/building/match/never_patterns.opt3.SimplifyCfg-initial.after.mir
blob: 86347db4d92ebce21cd502f1d87ef555ce479eca (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
// MIR for `opt3` after SimplifyCfg-initial

fn opt3(_1: &Result<u32, Void>) -> &u32 {
    debug res => _1;
    let mut _0: &u32;
    let mut _2: isize;
    let _3: &u32;
    scope 1 {
        debug x => _3;
    }

    bb0: {
        PlaceMention(_1);
        _2 = discriminant((*_1));
        switchInt(move _2) -> [1: bb2, otherwise: bb1];
    }

    bb1: {
        StorageLive(_3);
        _3 = &(((*_1) as Ok).0: u32);
        _0 = &(*_3);
        StorageDead(_3);
        return;
    }

    bb2: {
        FakeRead(ForMatchedPlace(None), (((*_1) as Err).0: Void));
        unreachable;
    }
}