about summary refs log tree commit diff
path: root/tests/mir-opt/copy-prop/custom_move_arg.f.CopyProp.panic-unwind.diff
blob: 1445b899dee20a559718d409796c8ce13f9888dc (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
- // MIR for `f` before CopyProp
+ // MIR for `f` after CopyProp
  
  fn f(_1: NotCopy) -> () {
      let mut _0: ();
      let mut _2: NotCopy;
      let mut _3: NotCopy;
  
      bb0: {
-         _2 = copy _1;
-         _0 = opaque::<NotCopy>(move _1) -> [return: bb1, unwind unreachable];
+         _0 = opaque::<NotCopy>(copy _1) -> [return: bb1, unwind unreachable];
      }
  
      bb1: {
-         _3 = move _2;
-         _0 = opaque::<NotCopy>(copy _3) -> [return: bb2, unwind unreachable];
+         _0 = opaque::<NotCopy>(copy _1) -> [return: bb2, unwind unreachable];
      }
  
      bb2: {
          return;
      }
  }