]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/if_condition_int.opt_u32.SimplifyComparisonIntegral.diff
Actually fix
[rust.git] / src / test / mir-opt / if_condition_int.opt_u32.SimplifyComparisonIntegral.diff
1 - // MIR for `opt_u32` before SimplifyComparisonIntegral
2 + // MIR for `opt_u32` after SimplifyComparisonIntegral
3   
4   fn opt_u32(_1: u32) -> u32 {
5       debug x => _1;                       // in scope 0 at $DIR/if-condition-int.rs:11:12: 11:13
6       let mut _0: u32;                     // return place in scope 0 at $DIR/if-condition-int.rs:11:23: 11:26
7       let mut _2: bool;                    // in scope 0 at $DIR/if-condition-int.rs:12:8: 12:15
8       let mut _3: u32;                     // in scope 0 at $DIR/if-condition-int.rs:12:8: 12:9
9       scope 1 {
10       }
11   
12       bb0: {
13           StorageLive(_2);                 // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
14           StorageLive(_3);                 // scope 1 at $DIR/if-condition-int.rs:12:8: 12:9
15           _3 = _1;                         // scope 1 at $DIR/if-condition-int.rs:12:8: 12:9
16 -         _2 = Eq(move _3, const 42_u32);  // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
17 -         StorageDead(_3);                 // scope 1 at $DIR/if-condition-int.rs:12:14: 12:15
18 -         switchInt(move _2) -> [false: bb2, otherwise: bb1]; // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
19 +         nop;                             // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
20 +         nop;                             // scope 1 at $DIR/if-condition-int.rs:12:14: 12:15
21 +         switchInt(move _3) -> [42_u32: bb1, otherwise: bb2]; // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
22       }
23   
24       bb1: {
25 +         StorageDead(_3);                 // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
26           _0 = const 0_u32;                // scope 1 at $DIR/if-condition-int.rs:12:18: 12:19
27           goto -> bb3;                     // scope 0 at $DIR/if-condition-int.rs:12:5: 12:32
28       }
29   
30       bb2: {
31 +         StorageDead(_3);                 // scope 1 at $DIR/if-condition-int.rs:12:8: 12:15
32           _0 = const 1_u32;                // scope 0 at $DIR/if-condition-int.rs:12:29: 12:30
33           goto -> bb3;                     // scope 0 at $DIR/if-condition-int.rs:12:5: 12:32
34       }
35   
36       bb3: {
37           StorageDead(_2);                 // scope 0 at $DIR/if-condition-int.rs:12:31: 12:32
38           return;                          // scope 0 at $DIR/if-condition-int.rs:13:2: 13:2
39       }
40   }
41