summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/reborrow.remut.CopyProp.panic-unwind.diff
blob: 67763fdce667671cf3a688bb6969e6a1bbdaef67 (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
- // MIR for `remut` before CopyProp
+ // MIR for `remut` after CopyProp
  
  fn remut(_1: u8) -> () {
      debug x => _1;
      let mut _0: ();
      let _2: &mut u8;
      let _5: ();
      let mut _6: &mut u8;
      scope 1 {
          debug a => _2;
          let _3: &mut u8;
          scope 2 {
              debug b => _3;
              let _4: &mut u8;
              scope 3 {
-                 debug c => _4;
+                 debug c => _2;
              }
          }
      }
  
      bb0: {
-         StorageLive(_2);
          _2 = &mut _1;
          StorageLive(_3);
          _3 = &mut (*_2);
-         StorageLive(_4);
-         _4 = move _2;
          StorageLive(_5);
-         StorageLive(_6);
-         _6 = move _4;
-         _5 = opaque::<&mut u8>(move _6) -> [return: bb1, unwind continue];
+         _5 = opaque::<&mut u8>(move _2) -> [return: bb1, unwind continue];
      }
  
      bb1: {
-         StorageDead(_6);
          StorageDead(_5);
          _0 = const ();
-         StorageDead(_4);
          StorageDead(_3);
-         StorageDead(_2);
          return;
      }
  }