summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/custom_move_arg.f.CopyProp.panic-unwind.diff
blob: eb40183c1c954b01f45be67ad2fea43214c2e0b9 (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 = _1;
-         _0 = opaque::<NotCopy>(move _1) -> [return: bb1, unwind continue];
+         _0 = opaque::<NotCopy>(_1) -> [return: bb1, unwind continue];
      }
  
      bb1: {
-         _3 = move _2;
-         _0 = opaque::<NotCopy>(_3) -> [return: bb2, unwind continue];
+         _0 = opaque::<NotCopy>(_1) -> [return: bb2, unwind continue];
      }
  
      bb2: {
          return;
      }
  }