about summary refs log tree commit diff
path: root/tests/mir-opt/matches_reduce_branches.match_trunc_u16_u8_failed.MatchBranchSimplification.diff
blob: 109e97bb578aff78203a386eec3e57ae423108f7 (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
58
59
60
61
62
- // MIR for `match_trunc_u16_u8_failed` before MatchBranchSimplification
+ // MIR for `match_trunc_u16_u8_failed` after MatchBranchSimplification
  
  fn match_trunc_u16_u8_failed(_1: EnumAu16) -> u8 {
      debug i => _1;
      let mut _0: u8;
      let mut _2: u16;
  
      bb0: {
          _2 = discriminant(_1);
          switchInt(move _2) -> [0: bb9, 127: bb8, 128: bb7, 255: bb6, 65280: bb5, 65407: bb4, 65408: bb3, 65535: bb2, otherwise: bb1];
      }
  
      bb1: {
          unreachable;
      }
  
      bb2: {
          _0 = const 127_u8;
          goto -> bb10;
      }
  
      bb3: {
          _0 = const 128_u8;
          goto -> bb10;
      }
  
      bb4: {
          _0 = const 127_u8;
          goto -> bb10;
      }
  
      bb5: {
          _0 = const 0_u8;
          goto -> bb10;
      }
  
      bb6: {
          _0 = const u8::MAX;
          goto -> bb10;
      }
  
      bb7: {
          _0 = const 128_u8;
          goto -> bb10;
      }
  
      bb8: {
          _0 = const 127_u8;
          goto -> bb10;
      }
  
      bb9: {
          _0 = const 0_u8;
          goto -> bb10;
      }
  
      bb10: {
          return;
      }
  }