summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/pre-codegen/try_identity.new.PreCodegen.after.mir
blob: 0bf4a2670020dfc6bb63ec23791b8f2c47955d3d (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
// MIR for `new` after PreCodegen

fn new(_1: Result<T, E>) -> Result<T, E> {
    debug x => _1;
    let mut _0: std::result::Result<T, E>;
    let mut _2: isize;
    let _3: T;
    let mut _4: std::ops::ControlFlow<E, T>;
    let _5: E;
    let mut _6: isize;
    let _7: T;
    let _8: E;
    scope 1 {
        debug v => _3;
    }
    scope 2 {
        debug e => _5;
    }
    scope 3 {
        debug v => _7;
    }
    scope 4 {
        debug e => _8;
    }

    bb0: {
        StorageLive(_4);
        _2 = discriminant(_1);
        switchInt(move _2) -> [0: bb1, 1: bb2, otherwise: bb7];
    }

    bb1: {
        _3 = move ((_1 as Ok).0: T);
        _4 = ControlFlow::<E, T>::Continue(move _3);
        goto -> bb3;
    }

    bb2: {
        _5 = move ((_1 as Err).0: E);
        _4 = ControlFlow::<E, T>::Break(move _5);
        goto -> bb3;
    }

    bb3: {
        _6 = discriminant(_4);
        switchInt(move _6) -> [0: bb4, 1: bb5, otherwise: bb7];
    }

    bb4: {
        _7 = move ((_4 as Continue).0: T);
        _0 = Result::<T, E>::Ok(move _7);
        StorageDead(_4);
        goto -> bb6;
    }

    bb5: {
        _8 = move ((_4 as Break).0: E);
        _0 = Result::<T, E>::Err(move _8);
        StorageDead(_4);
        goto -> bb6;
    }

    bb6: {
        return;
    }

    bb7: {
        unreachable;
    }
}