summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/basic_assignment.main.SimplifyCfg-initial.after.mir
blob: 75070ffda11fbd867b83db42c19256c70b8ecf8a (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
86
// MIR for `main` after SimplifyCfg-initial

| User Type Annotations
| 0: user_ty: Canonical { value: Ty(std::option::Option<std::boxed::Box<u32>>), max_universe: U0, variables: [] }, span: $DIR/basic_assignment.rs:20:17: 20:33, inferred_ty: std::option::Option<std::boxed::Box<u32>>
| 1: user_ty: Canonical { value: Ty(std::option::Option<std::boxed::Box<u32>>), max_universe: U0, variables: [] }, span: $DIR/basic_assignment.rs:20:17: 20:33, inferred_ty: std::option::Option<std::boxed::Box<u32>>
|
fn main() -> () {
    let mut _0: ();
    let _1: bool;
    let mut _3: bool;
    let mut _6: std::option::Option<std::boxed::Box<u32>>;
    scope 1 {
        debug nodrop_x => _1;
        let _2: bool;
        scope 2 {
            debug nodrop_y => _2;
            let _4: std::option::Option<std::boxed::Box<u32>> as UserTypeProjection { base: UserType(0), projs: [] };
            scope 3 {
                debug drop_x => _4;
                let _5: std::option::Option<std::boxed::Box<u32>>;
                scope 4 {
                    debug drop_y => _5;
                }
            }
        }
    }

    bb0: {
        StorageLive(_1);
        _1 = const false;
        FakeRead(ForLet(None), _1);
        StorageLive(_2);
        StorageLive(_3);
        _3 = _1;
        _2 = move _3;
        StorageDead(_3);
        StorageLive(_4);
        _4 = Option::<Box<u32>>::None;
        FakeRead(ForLet(None), _4);
        AscribeUserType(_4, o, UserTypeProjection { base: UserType(1), projs: [] });
        StorageLive(_5);
        StorageLive(_6);
        _6 = move _4;
        drop(_5) -> [return: bb1, unwind: bb2];
    }

    bb1: {
        _5 = move _6;
        drop(_6) -> [return: bb3, unwind: bb6];
    }

    bb2 (cleanup): {
        _5 = move _6;
        drop(_6) -> [return: bb6, unwind terminate(cleanup)];
    }

    bb3: {
        StorageDead(_6);
        _0 = const ();
        drop(_5) -> [return: bb4, unwind: bb7];
    }

    bb4: {
        StorageDead(_5);
        drop(_4) -> [return: bb5, unwind: bb8];
    }

    bb5: {
        StorageDead(_4);
        StorageDead(_2);
        StorageDead(_1);
        return;
    }

    bb6 (cleanup): {
        drop(_5) -> [return: bb7, unwind terminate(cleanup)];
    }

    bb7 (cleanup): {
        drop(_4) -> [return: bb8, unwind terminate(cleanup)];
    }

    bb8 (cleanup): {
        resume;
    }
}