summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/dest-prop/branch.foo.DestinationPropagation.diff
blob: 9c729663265e087f5507fb2b769c4d0acbc81eaf (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
- // MIR for `foo` before DestinationPropagation
+ // MIR for `foo` after DestinationPropagation
  
  fn foo() -> i32 {
      let mut _0: i32;                     // return place in scope 0 at $DIR/branch.rs:+0:13: +0:16
      let _1: i32;                         // in scope 0 at $DIR/branch.rs:+1:9: +1:10
      let mut _3: bool;                    // in scope 0 at $DIR/branch.rs:+3:16: +3:22
      let _4: i32;                         // in scope 0 at $DIR/branch.rs:+6:9: +6:14
      scope 1 {
-         debug x => _1;                   // in scope 1 at $DIR/branch.rs:+1:9: +1:10
+         debug x => _0;                   // in scope 1 at $DIR/branch.rs:+1:9: +1:10
          let _2: i32;                     // in scope 1 at $DIR/branch.rs:+3:9: +3:10
          scope 2 {
-             debug y => _2;               // in scope 2 at $DIR/branch.rs:+3:9: +3:10
+             debug y => _0;               // in scope 2 at $DIR/branch.rs:+3:9: +3:10
          }
      }
  
      bb0: {
-         StorageLive(_1);                 // scope 0 at $DIR/branch.rs:+1:9: +1:10
-         _1 = val() -> bb1;               // scope 0 at $DIR/branch.rs:+1:13: +1:18
+         nop;                             // scope 0 at $DIR/branch.rs:+1:9: +1:10
+         _0 = val() -> bb1;               // scope 0 at $DIR/branch.rs:+1:13: +1:18
                                           // mir::Constant
                                           // + span: $DIR/branch.rs:13:13: 13:16
                                           // + literal: Const { ty: fn() -> i32 {val}, val: Value(<ZST>) }
      }
  
      bb1: {
-         StorageLive(_2);                 // scope 1 at $DIR/branch.rs:+3:9: +3:10
+         nop;                             // scope 1 at $DIR/branch.rs:+3:9: +3:10
          StorageLive(_3);                 // scope 1 at $DIR/branch.rs:+3:16: +3:22
          _3 = cond() -> bb2;              // scope 1 at $DIR/branch.rs:+3:16: +3:22
                                           // mir::Constant
                                           // + span: $DIR/branch.rs:15:16: 15:20
                                           // + literal: Const { ty: fn() -> bool {cond}, val: Value(<ZST>) }
      }
  
      bb2: {
          switchInt(move _3) -> [0: bb4, otherwise: bb3]; // scope 1 at $DIR/branch.rs:+3:16: +3:22
      }
  
      bb3: {
-         _2 = _1;                         // scope 1 at $DIR/branch.rs:+4:9: +4:10
+         nop;                             // scope 1 at $DIR/branch.rs:+4:9: +4:10
          goto -> bb6;                     // scope 1 at $DIR/branch.rs:+3:13: +8:6
      }
  
      bb4: {
          StorageLive(_4);                 // scope 1 at $DIR/branch.rs:+6:9: +6:14
          _4 = val() -> bb5;               // scope 1 at $DIR/branch.rs:+6:9: +6:14
                                           // mir::Constant
                                           // + span: $DIR/branch.rs:18:9: 18:12
                                           // + literal: Const { ty: fn() -> i32 {val}, val: Value(<ZST>) }
      }
  
      bb5: {
          StorageDead(_4);                 // scope 1 at $DIR/branch.rs:+6:14: +6:15
-         _2 = _1;                         // scope 1 at $DIR/branch.rs:+7:9: +7:10
+         nop;                             // scope 1 at $DIR/branch.rs:+7:9: +7:10
          goto -> bb6;                     // scope 1 at $DIR/branch.rs:+3:13: +8:6
      }
  
      bb6: {
          StorageDead(_3);                 // scope 1 at $DIR/branch.rs:+8:5: +8:6
-         _0 = _2;                         // scope 2 at $DIR/branch.rs:+10:5: +10:6
-         StorageDead(_2);                 // scope 1 at $DIR/branch.rs:+11:1: +11:2
-         StorageDead(_1);                 // scope 0 at $DIR/branch.rs:+11:1: +11:2
+         nop;                             // scope 2 at $DIR/branch.rs:+10:5: +10:6
+         nop;                             // scope 1 at $DIR/branch.rs:+11:1: +11:2
+         nop;                             // scope 0 at $DIR/branch.rs:+11:1: +11:2
          return;                          // scope 0 at $DIR/branch.rs:+11:2: +11:2
      }
  }