summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/matches_u8.exhaustive_match_i8.MatchBranchSimplification.diff
blob: b5146cd539f396425714f2d50d210e96e6a8e4b1 (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
- // MIR for `exhaustive_match_i8` before MatchBranchSimplification
+ // MIR for `exhaustive_match_i8` after MatchBranchSimplification
  
  fn exhaustive_match_i8(_1: E) -> i8 {
      debug e => _1;                       // in scope 0 at $DIR/matches_u8.rs:+0:28: +0:29
      let mut _0: i8;                      // return place in scope 0 at $DIR/matches_u8.rs:+0:37: +0:39
      let mut _2: isize;                   // in scope 0 at $DIR/matches_u8.rs:+2:9: +2:13
  
      bb0: {
          _2 = discriminant(_1);           // scope 0 at $DIR/matches_u8.rs:+1:11: +1:12
          switchInt(move _2) -> [0: bb3, 1: bb1, otherwise: bb2]; // scope 0 at $DIR/matches_u8.rs:+1:5: +1:12
      }
  
      bb1: {
          _0 = const 1_i8;                 // scope 0 at $DIR/matches_u8.rs:+3:17: +3:18
          goto -> bb4;                     // scope 0 at $DIR/matches_u8.rs:+3:17: +3:18
      }
  
      bb2: {
          unreachable;                     // scope 0 at $DIR/matches_u8.rs:+1:11: +1:12
      }
  
      bb3: {
          _0 = const 0_i8;                 // scope 0 at $DIR/matches_u8.rs:+2:17: +2:18
          goto -> bb4;                     // scope 0 at $DIR/matches_u8.rs:+2:17: +2:18
      }
  
      bb4: {
          return;                          // scope 0 at $DIR/matches_u8.rs:+5:2: +5:2
      }
  }