]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/aggregate.foo.ConstProp.diff
Auto merge of #107671 - CastilloDel:master, r=estebank
[rust.git] / tests / mir-opt / const_prop / aggregate.foo.ConstProp.diff
1 - // MIR for `foo` before ConstProp
2 + // MIR for `foo` after ConstProp
3   
4   fn foo(_1: u8) -> () {
5       debug x => _1;                       // in scope 0 at $DIR/aggregate.rs:+0:8: +0:9
6       let mut _0: ();                      // return place in scope 0 at $DIR/aggregate.rs:+0:15: +0:15
7       let _2: i32;                         // in scope 0 at $DIR/aggregate.rs:+2:9: +2:14
8       let mut _3: i32;                     // in scope 0 at $DIR/aggregate.rs:+2:17: +2:25
9       let mut _4: (i32, u8);               // in scope 0 at $DIR/aggregate.rs:+2:17: +2:23
10       let mut _5: u8;                      // in scope 0 at $DIR/aggregate.rs:+2:21: +2:22
11       let mut _7: i32;                     // in scope 0 at $DIR/aggregate.rs:+3:18: +3:26
12       let mut _8: (u8, i32);               // in scope 0 at $DIR/aggregate.rs:+3:18: +3:24
13       let mut _9: u8;                      // in scope 0 at $DIR/aggregate.rs:+3:19: +3:20
14       scope 1 {
15           debug first => _2;               // in scope 1 at $DIR/aggregate.rs:+2:9: +2:14
16           let _6: i32;                     // in scope 1 at $DIR/aggregate.rs:+3:9: +3:15
17           scope 2 {
18               debug second => _6;          // in scope 2 at $DIR/aggregate.rs:+3:9: +3:15
19           }
20       }
21   
22       bb0: {
23           StorageLive(_2);                 // scope 0 at $DIR/aggregate.rs:+2:9: +2:14
24           StorageLive(_3);                 // scope 0 at $DIR/aggregate.rs:+2:17: +2:25
25           StorageLive(_4);                 // scope 0 at $DIR/aggregate.rs:+2:17: +2:23
26           StorageLive(_5);                 // scope 0 at $DIR/aggregate.rs:+2:21: +2:22
27           _5 = _1;                         // scope 0 at $DIR/aggregate.rs:+2:21: +2:22
28           _4 = (const 0_i32, move _5);     // scope 0 at $DIR/aggregate.rs:+2:17: +2:23
29           StorageDead(_5);                 // scope 0 at $DIR/aggregate.rs:+2:22: +2:23
30 -         _3 = (_4.0: i32);                // scope 0 at $DIR/aggregate.rs:+2:17: +2:25
31 -         _2 = Add(move _3, const 1_i32);  // scope 0 at $DIR/aggregate.rs:+2:17: +2:29
32 +         _3 = const 0_i32;                // scope 0 at $DIR/aggregate.rs:+2:17: +2:25
33 +         _2 = const 1_i32;                // scope 0 at $DIR/aggregate.rs:+2:17: +2:29
34           StorageDead(_3);                 // scope 0 at $DIR/aggregate.rs:+2:28: +2:29
35           StorageDead(_4);                 // scope 0 at $DIR/aggregate.rs:+2:29: +2:30
36           StorageLive(_6);                 // scope 1 at $DIR/aggregate.rs:+3:9: +3:15
37           StorageLive(_7);                 // scope 1 at $DIR/aggregate.rs:+3:18: +3:26
38           StorageLive(_8);                 // scope 1 at $DIR/aggregate.rs:+3:18: +3:24
39           StorageLive(_9);                 // scope 1 at $DIR/aggregate.rs:+3:19: +3:20
40           _9 = _1;                         // scope 1 at $DIR/aggregate.rs:+3:19: +3:20
41           _8 = (move _9, const 1_i32);     // scope 1 at $DIR/aggregate.rs:+3:18: +3:24
42           StorageDead(_9);                 // scope 1 at $DIR/aggregate.rs:+3:23: +3:24
43 -         _7 = (_8.1: i32);                // scope 1 at $DIR/aggregate.rs:+3:18: +3:26
44 -         _6 = Add(move _7, const 2_i32);  // scope 1 at $DIR/aggregate.rs:+3:18: +3:30
45 +         _7 = const 1_i32;                // scope 1 at $DIR/aggregate.rs:+3:18: +3:26
46 +         _6 = const 3_i32;                // scope 1 at $DIR/aggregate.rs:+3:18: +3:30
47           StorageDead(_7);                 // scope 1 at $DIR/aggregate.rs:+3:29: +3:30
48           StorageDead(_8);                 // scope 1 at $DIR/aggregate.rs:+3:30: +3:31
49           _0 = const ();                   // scope 0 at $DIR/aggregate.rs:+0:15: +4:2
50           StorageDead(_6);                 // scope 1 at $DIR/aggregate.rs:+4:1: +4:2
51           StorageDead(_2);                 // scope 0 at $DIR/aggregate.rs:+4:1: +4:2
52           return;                          // scope 0 at $DIR/aggregate.rs:+4:2: +4:2
53       }
54   }
55