File: matches_reduce_branches.match_u8_i8_2.MatchBranchSimplification.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 (80 lines) | stat: -rw-r--r-- 1,725 bytes parent folder | download | duplicates (4)
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
72
73
74
75
76
77
78
79
80
- // MIR for `match_u8_i8_2` before MatchBranchSimplification
+ // MIR for `match_u8_i8_2` after MatchBranchSimplification
  
  fn match_u8_i8_2(_1: EnumAu8) -> (i8, i8) {
      debug i => _1;
      let mut _0: (i8, i8);
      let _2: i8;
      let _4: ();
      let mut _5: u8;
      let mut _6: i8;
      let mut _7: i8;
+     let mut _8: u8;
      scope 1 {
          debug a => _2;
          let _3: i8;
          scope 2 {
              debug b => _3;
          }
      }
  
      bb0: {
          StorageLive(_2);
          StorageLive(_3);
          StorageLive(_4);
          _5 = discriminant(_1);
-         switchInt(move _5) -> [0: bb5, 127: bb4, 128: bb3, 255: bb2, otherwise: bb1];
-     }
- 
-     bb1: {
-         unreachable;
-     }
- 
-     bb2: {
-         _2 = const -1_i8;
-         _3 = const -1_i8;
+         StorageLive(_8);
+         _8 = move _5;
+         _2 = copy _8 as i8 (IntToInt);
+         _3 = copy _8 as i8 (IntToInt);
          _4 = ();
-         goto -> bb6;
-     }
- 
-     bb3: {
-         _2 = const i8::MIN;
-         _3 = const i8::MIN;
-         _4 = ();
-         goto -> bb6;
-     }
- 
-     bb4: {
-         _2 = const i8::MAX;
-         _3 = const i8::MAX;
-         _4 = ();
-         goto -> bb6;
-     }
- 
-     bb5: {
-         _2 = const 0_i8;
-         _3 = const 0_i8;
-         _4 = ();
-         goto -> bb6;
-     }
- 
-     bb6: {
+         StorageDead(_8);
          StorageDead(_4);
          StorageLive(_6);
          _6 = copy _2;
          StorageLive(_7);
          _7 = copy _3;
          _0 = (move _6, move _7);
          StorageDead(_7);
          StorageDead(_6);
          StorageDead(_3);
          StorageDead(_2);
          return;
      }
  }