summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/derefer_inline_test.main.Derefer.diff
blob: 426d4fb213cdb1653a9c218b02e0e201f881941e (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
- // MIR for `main` before Derefer
+ // MIR for `main` after Derefer
  
  fn main() -> () {
      let mut _0: ();                      // return place in scope 0 at $DIR/derefer_inline_test.rs:+0:11: +0:11
      let _1: std::boxed::Box<std::boxed::Box<u32>>; // in scope 0 at $DIR/derefer_inline_test.rs:+1:5: +1:18
      let mut _2: std::boxed::Box<u32>;    // in scope 0 at $DIR/derefer_inline_test.rs:+1:14: +1:17
  
      bb0: {
          StorageLive(_1);                 // scope 0 at $DIR/derefer_inline_test.rs:+1:5: +1:18
          StorageLive(_2);                 // scope 0 at $DIR/derefer_inline_test.rs:+1:14: +1:17
          _2 = f() -> bb1;                 // scope 0 at $DIR/derefer_inline_test.rs:+1:14: +1:17
                                           // mir::Constant
                                           // + span: $DIR/derefer_inline_test.rs:10:14: 10:15
                                           // + literal: Const { ty: fn() -> Box<u32> {f}, val: Value(<ZST>) }
      }
  
      bb1: {
          _1 = Box::<Box<u32>>::new(move _2) -> [return: bb2, unwind: bb4]; // scope 0 at $DIR/derefer_inline_test.rs:+1:5: +1:18
                                           // mir::Constant
                                           // + span: $DIR/derefer_inline_test.rs:10:5: 10:13
                                           // + user_ty: UserType(0)
                                           // + literal: Const { ty: fn(Box<u32>) -> Box<Box<u32>> {Box::<Box<u32>>::new}, val: Value(<ZST>) }
      }
  
      bb2: {
          StorageDead(_2);                 // scope 0 at $DIR/derefer_inline_test.rs:+1:17: +1:18
          drop(_1) -> bb3;                 // scope 0 at $DIR/derefer_inline_test.rs:+1:18: +1:19
      }
  
      bb3: {
          StorageDead(_1);                 // scope 0 at $DIR/derefer_inline_test.rs:+1:18: +1:19
          _0 = const ();                   // scope 0 at $DIR/derefer_inline_test.rs:+0:11: +2:2
          return;                          // scope 0 at $DIR/derefer_inline_test.rs:+2:2: +2:2
      }
  
      bb4 (cleanup): {
          drop(_2) -> [return: bb5, unwind terminate]; // scope 0 at $DIR/derefer_inline_test.rs:+1:17: +1:18
      }
  
      bb5 (cleanup): {
          resume;                          // scope 0 at $DIR/derefer_inline_test.rs:+0:1: +2:2
      }
  }