about summary refs log tree commit diff
path: root/tests/mir-opt/gvn_copy_aggregate.remove_storage_dead.GVN.diff
blob: c9cfc7efcd1a6d3d0ad81e00417049caa9c37634 (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
- // MIR for `remove_storage_dead` before GVN
+ // MIR for `remove_storage_dead` after GVN
  
  fn remove_storage_dead(_1: fn() -> AlwaysSome<T>) -> AlwaysSome<T> {
      debug f => _1;
      let mut _0: AlwaysSome<T>;
      let _2: T;
      let mut _3: AlwaysSome<T>;
      let mut _4: fn() -> AlwaysSome<T>;
      let _5: T;
      let mut _6: T;
      let mut _7: isize;
      let mut _8: isize;
      scope 1 {
          debug v => _2;
      }
      scope 2 {
          debug v => _5;
      }
  
      bb0: {
          StorageLive(_2);
-         StorageLive(_3);
+         nop;
          StorageLive(_4);
          _4 = copy _1;
-         _3 = move _4() -> [return: bb1, unwind unreachable];
+         _3 = copy _1() -> [return: bb1, unwind unreachable];
      }
  
      bb1: {
          StorageDead(_4);
-         StorageLive(_5);
-         _5 = move ((_3 as Some).0: T);
-         _2 = move _5;
-         StorageDead(_5);
+         nop;
+         _5 = copy ((_3 as Some).0: T);
+         _2 = copy _5;
+         nop;
          _7 = discriminant(_3);
-         StorageDead(_3);
+         nop;
          StorageLive(_6);
-         _6 = move _2;
-         _0 = AlwaysSome::<T>::Some(move _6);
+         _6 = copy _5;
+         _0 = copy _3;
          StorageDead(_6);
          StorageDead(_2);
          return;
      }
  }