summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/inline/issue_76997_inline_scopes_parenting.main.Inline.after.mir
blob: ba4f91b28d536b0eddcbadda076ba977eeda0fc8 (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
// MIR for `main` after Inline

fn main() -> () {
    let mut _0: ();
    let _1: {closure@$DIR/issue_76997_inline_scopes_parenting.rs:15:13: 15:16};
    let mut _2: &{closure@$DIR/issue_76997_inline_scopes_parenting.rs:15:13: 15:16};
    let mut _3: ((),);
    let mut _4: ();
    let mut _5: ();
    scope 1 {
        debug f => _1;
        scope 2 (inlined main::{closure#0}) {
            debug x => const ();
            scope 3 {
                debug y => const ();
            }
        }
    }

    bb0: {
        StorageLive(_1);
        _1 = {closure@$DIR/issue_76997_inline_scopes_parenting.rs:15:13: 15:16};
        StorageLive(_2);
        _2 = &_1;
        StorageLive(_3);
        StorageLive(_4);
        _4 = ();
        _3 = (move _4,);
        StorageLive(_5);
        _5 = move (_3.0: ());
        StorageDead(_5);
        StorageDead(_4);
        StorageDead(_3);
        StorageDead(_2);
        StorageDead(_1);
        return;
    }
}