]> git.proxmox.com Git - rustc.git/blame - src/test/mir-opt/derefer_test.main.Derefer.diff
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / mir-opt / derefer_test.main.Derefer.diff
CommitLineData
04454e1e
FG
1- // MIR for `main` before Derefer
2+ // MIR for `main` after Derefer
3
4 fn main() -> () {
064997fb
FG
5 let mut _0: (); // return place in scope 0 at $DIR/derefer_test.rs:+0:11: +0:11
6 let mut _1: (i32, i32); // in scope 0 at $DIR/derefer_test.rs:+1:9: +1:14
7 let mut _3: &mut (i32, i32); // in scope 0 at $DIR/derefer_test.rs:+2:22: +2:28
8+ let mut _6: &mut (i32, i32); // in scope 0 at $DIR/derefer_test.rs:+2:9: +2:14
9+ let mut _7: &mut (i32, i32); // in scope 0 at $DIR/derefer_test.rs:+2:9: +2:14
04454e1e 10 scope 1 {
064997fb
FG
11 debug a => _1; // in scope 1 at $DIR/derefer_test.rs:+1:9: +1:14
12 let mut _2: (i32, &mut (i32, i32)); // in scope 1 at $DIR/derefer_test.rs:+2:9: +2:14
04454e1e 13 scope 2 {
064997fb
FG
14 debug b => _2; // in scope 2 at $DIR/derefer_test.rs:+2:9: +2:14
15 let _4: &mut i32; // in scope 2 at $DIR/derefer_test.rs:+3:9: +3:10
04454e1e 16 scope 3 {
064997fb
FG
17 debug x => _4; // in scope 3 at $DIR/derefer_test.rs:+3:9: +3:10
18 let _5: &mut i32; // in scope 3 at $DIR/derefer_test.rs:+4:9: +4:10
04454e1e 19 scope 4 {
064997fb 20 debug y => _5; // in scope 4 at $DIR/derefer_test.rs:+4:9: +4:10
04454e1e
FG
21 }
22 }
23 }
24 }
25
26 bb0: {
064997fb
FG
27 StorageLive(_1); // scope 0 at $DIR/derefer_test.rs:+1:9: +1:14
28 _1 = (const 42_i32, const 43_i32); // scope 0 at $DIR/derefer_test.rs:+1:17: +1:24
29 StorageLive(_2); // scope 1 at $DIR/derefer_test.rs:+2:9: +2:14
30 StorageLive(_3); // scope 1 at $DIR/derefer_test.rs:+2:22: +2:28
31 _3 = &mut _1; // scope 1 at $DIR/derefer_test.rs:+2:22: +2:28
32 _2 = (const 99_i32, move _3); // scope 1 at $DIR/derefer_test.rs:+2:17: +2:29
33 StorageDead(_3); // scope 1 at $DIR/derefer_test.rs:+2:28: +2:29
34 StorageLive(_4); // scope 2 at $DIR/derefer_test.rs:+3:9: +3:10
35- _4 = &mut ((*(_2.1: &mut (i32, i32))).0: i32); // scope 2 at $DIR/derefer_test.rs:+3:13: +3:26
36+ StorageLive(_6); // scope 2 at $DIR/derefer_test.rs:+3:13: +3:26
37+ _6 = deref_copy (_2.1: &mut (i32, i32)); // scope 2 at $DIR/derefer_test.rs:+3:13: +3:26
38+ _4 = &mut ((*_6).0: i32); // scope 2 at $DIR/derefer_test.rs:+3:13: +3:26
39+ StorageDead(_6); // scope 3 at $DIR/derefer_test.rs:+4:9: +4:10
40 StorageLive(_5); // scope 3 at $DIR/derefer_test.rs:+4:9: +4:10
41- _5 = &mut ((*(_2.1: &mut (i32, i32))).1: i32); // scope 3 at $DIR/derefer_test.rs:+4:13: +4:26
42+ StorageLive(_7); // scope 3 at $DIR/derefer_test.rs:+4:13: +4:26
43+ _7 = deref_copy (_2.1: &mut (i32, i32)); // scope 3 at $DIR/derefer_test.rs:+4:13: +4:26
44+ _5 = &mut ((*_7).1: i32); // scope 3 at $DIR/derefer_test.rs:+4:13: +4:26
45+ StorageDead(_7); // scope 0 at $DIR/derefer_test.rs:+0:11: +5:2
46 _0 = const (); // scope 0 at $DIR/derefer_test.rs:+0:11: +5:2
47 StorageDead(_5); // scope 3 at $DIR/derefer_test.rs:+5:1: +5:2
48 StorageDead(_4); // scope 2 at $DIR/derefer_test.rs:+5:1: +5:2
49 StorageDead(_2); // scope 1 at $DIR/derefer_test.rs:+5:1: +5:2
50 StorageDead(_1); // scope 0 at $DIR/derefer_test.rs:+5:1: +5:2
51 return; // scope 0 at $DIR/derefer_test.rs:+5:2: +5:2
04454e1e
FG
52 }
53 }
54