about summary refs log tree commit diff
path: root/tests/mir-opt/gvn_copy_aggregate.all_copy_use_changed.GVN.diff
blob: dc65cccb7bd6efed4d4eb8da59c9ac821dadfa25 (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
- // MIR for `all_copy_use_changed` before GVN
+ // MIR for `all_copy_use_changed` after GVN
  
  fn all_copy_use_changed(_1: &mut AllCopy) -> AllCopy {
      debug v => _1;
      let mut _0: AllCopy;
      let mut _2: i32;
      let mut _3: i32;
      let mut _6: i32;
      let mut _7: u64;
      let mut _8: [i8; 3];
      scope 1 {
          debug a => _2;
          let _4: u64;
          scope 2 {
              debug b => _4;
              let _5: [i8; 3];
              scope 3 {
                  debug c => _5;
              }
          }
      }
  
      bb0: {
          StorageLive(_2);
          _2 = copy ((*_1).0: i32);
          ((*_1).0: i32) = const 1_i32;
          StorageLive(_3);
          _3 = copy ((*_1).0: i32);
          _2 = move _3;
          StorageDead(_3);
-         StorageLive(_4);
+         nop;
          _4 = copy ((*_1).1: u64);
-         StorageLive(_5);
+         nop;
          _5 = copy ((*_1).2: [i8; 3]);
          StorageLive(_6);
          _6 = copy _2;
          StorageLive(_7);
          _7 = copy _4;
          StorageLive(_8);
          _8 = copy _5;
-         _0 = AllCopy { a: move _6, b: move _7, c: move _8 };
+         _0 = AllCopy { a: move _6, b: copy _4, c: copy _5 };
          StorageDead(_8);
          StorageDead(_7);
          StorageDead(_6);
-         StorageDead(_5);
-         StorageDead(_4);
+         nop;
+         nop;
          StorageDead(_2);
          return;
      }
  }