]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/inline/cycle.g.Inline.diff
Rollup merge of #106353 - lukas-code:reduce-red-lines-in-my-ide, r=wesleywiser
[rust.git] / src / test / mir-opt / inline / cycle.g.Inline.diff
1 - // MIR for `g` before Inline
2 + // MIR for `g` after Inline
3   
4   fn g() -> () {
5       let mut _0: ();                      // return place in scope 0 at $DIR/cycle.rs:+0:8: +0:8
6       let _1: ();                          // in scope 0 at $DIR/cycle.rs:+1:5: +1:12
7 +     let mut _2: fn() {main};             // in scope 0 at $DIR/cycle.rs:+1:5: +1:12
8 +     scope 1 (inlined f::<fn() {main}>) { // at $DIR/cycle.rs:12:5: 12:12
9 +         debug g => _2;                   // in scope 1 at $DIR/cycle.rs:5:6: 5:7
10 +         let _3: ();                      // in scope 1 at $DIR/cycle.rs:6:5: 6:8
11 +         let mut _4: &fn() {main};        // in scope 1 at $DIR/cycle.rs:6:5: 6:6
12 +         let mut _5: ();                  // in scope 1 at $DIR/cycle.rs:6:5: 6:8
13 +         scope 2 (inlined <fn() {main} as Fn<()>>::call - shim(fn() {main})) { // at $DIR/cycle.rs:6:5: 6:8
14 +         }
15 +     }
16   
17       bb0: {
18           StorageLive(_1);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:12
19 -         _1 = f::<fn() {main}>(main) -> bb1; // scope 0 at $DIR/cycle.rs:+1:5: +1:12
20 +         StorageLive(_2);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:12
21 +         _2 = main;                       // scope 0 at $DIR/cycle.rs:+1:5: +1:12
22                                            // mir::Constant
23 -                                          // + span: $DIR/cycle.rs:12:5: 12:6
24 -                                          // + literal: Const { ty: fn(fn() {main}) {f::<fn() {main}>}, val: Value(<ZST>) }
25 -                                          // mir::Constant
26                                            // + span: $DIR/cycle.rs:12:7: 12:11
27                                            // + literal: Const { ty: fn() {main}, val: Value(<ZST>) }
28 +         StorageLive(_3);                 // scope 1 at $DIR/cycle.rs:6:5: 6:8
29 +         StorageLive(_4);                 // scope 1 at $DIR/cycle.rs:6:5: 6:6
30 +         _4 = &_2;                        // scope 1 at $DIR/cycle.rs:6:5: 6:6
31 +         StorageLive(_5);                 // scope 1 at $DIR/cycle.rs:6:5: 6:8
32 +         _3 = move (*_4)() -> [return: bb4, unwind: bb2]; // scope 2 at $SRC_DIR/core/src/ops/function.rs:LL:COL
33       }
34   
35       bb1: {
36 +         StorageDead(_2);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:12
37           StorageDead(_1);                 // scope 0 at $DIR/cycle.rs:+1:12: +1:13
38           _0 = const ();                   // scope 0 at $DIR/cycle.rs:+0:8: +2:2
39           return;                          // scope 0 at $DIR/cycle.rs:+2:2: +2:2
40 +     }
41
42 +     bb2 (cleanup): {
43 +         drop(_2) -> bb3;                 // scope 1 at $DIR/cycle.rs:7:1: 7:2
44 +     }
45
46 +     bb3 (cleanup): {
47 +         resume;                          // scope 1 at $DIR/cycle.rs:5:1: 7:2
48 +     }
49
50 +     bb4: {
51 +         StorageDead(_5);                 // scope 1 at $DIR/cycle.rs:6:7: 6:8
52 +         StorageDead(_4);                 // scope 1 at $DIR/cycle.rs:6:7: 6:8
53 +         StorageDead(_3);                 // scope 1 at $DIR/cycle.rs:6:8: 6:9
54 +         drop(_2) -> bb1;                 // scope 1 at $DIR/cycle.rs:7:1: 7:2
55       }
56   }
57