]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/inline/cycle.main.Inline.diff
Rollup merge of #105004 - TaKO8Ki:fix-104897, r=wesleywiser
[rust.git] / src / test / 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 +     }
14   
15       bb0: {
16           StorageLive(_1);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:9
17 -         _1 = f::<fn() {g}>(g) -> bb1;    // scope 0 at $DIR/cycle.rs:+1:5: +1:9
18 +         StorageLive(_2);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:9
19 +         _2 = g;                          // scope 0 at $DIR/cycle.rs:+1:5: +1:9
20                                            // mir::Constant
21 -                                          // + span: $DIR/cycle.rs:17:5: 17:6
22 -                                          // + literal: Const { ty: fn(fn() {g}) {f::<fn() {g}>}, val: Value(<ZST>) }
23 -                                          // mir::Constant
24                                            // + span: $DIR/cycle.rs:17:7: 17:8
25                                            // + literal: Const { ty: fn() {g}, val: Value(<ZST>) }
26 +         StorageLive(_3);                 // scope 1 at $DIR/cycle.rs:6:5: 6:8
27 +         StorageLive(_4);                 // scope 1 at $DIR/cycle.rs:6:5: 6:6
28 +         _4 = &_2;                        // scope 1 at $DIR/cycle.rs:6:5: 6:6
29 +         StorageLive(_5);                 // scope 1 at $DIR/cycle.rs:6:5: 6:8
30 +         _3 = <fn() {g} as Fn<()>>::call(move _4, move _5) -> [return: bb2, unwind: bb3]; // scope 1 at $DIR/cycle.rs:6:5: 6:8
31 +                                          // mir::Constant
32 +                                          // + span: $DIR/cycle.rs:6:5: 6:6
33 +                                          // + literal: Const { ty: for<'a> extern "rust-call" fn(&'a fn() {g}, ()) -> <fn() {g} as FnOnce<()>>::Output {<fn() {g} as Fn<()>>::call}, val: Value(<ZST>) }
34       }
35   
36       bb1: {
37 +         StorageDead(_2);                 // scope 0 at $DIR/cycle.rs:+1:5: +1:9
38           StorageDead(_1);                 // scope 0 at $DIR/cycle.rs:+1:9: +1:10
39           _0 = const ();                   // scope 0 at $DIR/cycle.rs:+0:11: +2:2
40           return;                          // scope 0 at $DIR/cycle.rs:+2:2: +2:2
41 +     }
42
43 +     bb2: {
44 +         StorageDead(_5);                 // scope 1 at $DIR/cycle.rs:6:7: 6:8
45 +         StorageDead(_4);                 // scope 1 at $DIR/cycle.rs:6:7: 6:8
46 +         StorageDead(_3);                 // scope 1 at $DIR/cycle.rs:6:8: 6:9
47 +         drop(_2) -> bb1;                 // scope 1 at $DIR/cycle.rs:7:1: 7:2
48 +     }
49
50 +     bb3 (cleanup): {
51 +         drop(_2) -> bb4;                 // scope 1 at $DIR/cycle.rs:7:1: 7:2
52 +     }
53
54 +     bb4 (cleanup): {
55 +         resume;                          // scope 1 at $DIR/cycle.rs:5:1: 7:2
56       }
57   }
58