]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/matches_u8.exhaustive_match.MatchBranchSimplification.32bit.diff
Rollup merge of #99864 - klensy:bootstrap-art-dupe, r=jyn514
[rust.git] / src / test / mir-opt / matches_u8.exhaustive_match.MatchBranchSimplification.32bit.diff
1 - // MIR for `exhaustive_match` before MatchBranchSimplification
2 + // MIR for `exhaustive_match` after MatchBranchSimplification
3   
4   fn exhaustive_match(_1: E) -> u8 {
5       debug e => _1;                       // in scope 0 at $DIR/matches_u8.rs:+0:25: +0:26
6       let mut _0: u8;                      // return place in scope 0 at $DIR/matches_u8.rs:+0:34: +0:36
7       let mut _2: isize;                   // in scope 0 at $DIR/matches_u8.rs:+2:9: +2:13
8   
9       bb0: {
10           _2 = discriminant(_1);           // scope 0 at $DIR/matches_u8.rs:+1:11: +1:12
11           switchInt(move _2) -> [0_isize: bb2, otherwise: bb1]; // scope 0 at $DIR/matches_u8.rs:+1:5: +1:12
12       }
13   
14       bb1: {
15           _0 = const 1_u8;                 // scope 0 at $DIR/matches_u8.rs:+3:17: +3:18
16           goto -> bb3;                     // scope 0 at $DIR/matches_u8.rs:+3:17: +3:18
17       }
18   
19       bb2: {
20           _0 = const 0_u8;                 // scope 0 at $DIR/matches_u8.rs:+2:17: +2:18
21           goto -> bb3;                     // scope 0 at $DIR/matches_u8.rs:+2:17: +2:18
22       }
23   
24       bb3: {
25           return;                          // scope 0 at $DIR/matches_u8.rs:+5:2: +5:2
26       }
27   }
28