summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/address_of_pair.fn0.ConstProp.diff
blob: 6b96c24d46063c7ab3d5a7bf2999ddf0f761ecb7 (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
- // MIR for `fn0` before ConstProp
+ // MIR for `fn0` after ConstProp
  
  fn fn0() -> bool {
      let mut _0: bool;
      let mut _1: !;
      let mut _2: (i32, bool);
      let _4: ();
      let mut _6: bool;
      scope 1 {
          debug pair => _2;
          let _3: *mut bool;
          scope 2 {
              debug ptr => _3;
              let _5: bool;
              scope 3 {
              }
              scope 4 {
                  debug ret => _5;
              }
          }
      }
  
      bb0: {
          StorageLive(_2);
          _2 = (const 1_i32, const false);
          StorageLive(_3);
          _3 = &raw mut (_2.1: bool);
          _2 = (const 1_i32, const false);
          StorageLive(_4);
          (*_3) = const true;
          _4 = const ();
          StorageDead(_4);
          StorageLive(_5);
          StorageLive(_6);
          _6 = (_2.1: bool);
          _5 = Not(move _6);
          StorageDead(_6);
          _0 = _5;
          StorageDead(_5);
          StorageDead(_3);
          StorageDead(_2);
          return;
      }
  }