]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/inline/cycle.main.Inline.diff
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / mir-opt / inline / cycle.main.Inline.diff
1 - // MIR for `main` before Inline
2 + // MIR for `main` after Inline
3   
4   fn main() -> () {
5       let mut _0: ();                      // return place in scope 0 at $DIR/cycle.rs:+0:11: +0:11
6       let _1: ();                          // in scope 0 at $DIR/cycle.rs:+1:5: +1:9
7 +     let mut _2: fn() {g};                // in scope 0 at $DIR/cycle.rs:+1:5: +1:9
8 +     scope 1 (inlined f::<fn() {g}>) {    // at $DIR/cycle.rs:17:5: 17:9
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() {g};           // 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() {g} as Fn<()>>::call - shim(fn() {g})) { // 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:9
19 -         _1 = f::<fn() {g}>(g) -> bb1;    // scope 0 at $DIR/cycle.rs:+1:5: +1:9
20 +         StorageLive(_2);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:9
21 +         _2 = g;                          // scope 0 at $DIR/cycle.rs:+1:5: +1:9
22                                            // mir::Constant
23 -                                          // + span: $DIR/cycle.rs:17:5: 17:6
24 -                                          // + literal: Const { ty: fn(fn() {g}) {f::<fn() {g}>}, val: Value(<ZST>) }
25 -                                          // mir::Constant
26                                            // + span: $DIR/cycle.rs:17:7: 17:8
27                                            // + literal: Const { ty: fn() {g}, 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:9
37           StorageDead(_1);                 // scope 0 at $DIR/cycle.rs:+1:9: +1:10
38           _0 = const ();                   // scope 0 at $DIR/cycle.rs:+0:11: +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