File: gvn_clone.%7Bimpl%230%7D-clone.GVN.diff

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (71 lines) | stat: -rw-r--r-- 1,720 bytes parent folder | download | duplicates (3)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
- // MIR for `<impl at $DIR/gvn_clone.rs:14:10: 14:15>::clone` before GVN
+ // MIR for `<impl at $DIR/gvn_clone.rs:14:10: 14:15>::clone` after GVN
  
  fn <impl at $DIR/gvn_clone.rs:14:10: 14:15>::clone(_1: &AllCopy) -> AllCopy {
      debug self => _1;
      let mut _0: AllCopy;
      let mut _2: i32;
      let mut _3: &i32;
      let _4: &i32;
      let mut _5: u64;
      let mut _6: &u64;
      let _7: &u64;
      let mut _8: [i8; 3];
      let mut _9: &[i8; 3];
      let _10: &[i8; 3];
  
      bb0: {
          StorageLive(_2);
          StorageLive(_3);
-         StorageLive(_4);
+         nop;
          _4 = &((*_1).0: i32);
          _3 = copy _4;
-         _2 = copy (*_3);
+         _2 = copy ((*_1).0: i32);
          goto -> bb1;
      }
  
      bb1: {
          StorageDead(_3);
          StorageLive(_5);
          StorageLive(_6);
-         StorageLive(_7);
+         nop;
          _7 = &((*_1).1: u64);
          _6 = copy _7;
-         _5 = copy (*_6);
+         _5 = copy ((*_1).1: u64);
          goto -> bb2;
      }
  
      bb2: {
          StorageDead(_6);
          StorageLive(_8);
          StorageLive(_9);
-         StorageLive(_10);
+         nop;
          _10 = &((*_1).2: [i8; 3]);
          _9 = copy _10;
-         _8 = copy (*_9);
+         _8 = copy ((*_1).2: [i8; 3]);
          goto -> bb3;
      }
  
      bb3: {
          StorageDead(_9);
-         _0 = AllCopy { a: move _2, b: move _5, c: move _8 };
+         _0 = copy (*_1);
          StorageDead(_8);
          StorageDead(_5);
          StorageDead(_2);
-         StorageDead(_10);
-         StorageDead(_7);
-         StorageDead(_4);
+         nop;
+         nop;
+         nop;
          return;
      }
  }