]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/read_immutable_static.main.ConstProp.diff
Rollup merge of #106766 - GuillaumeGomez:rm-stripper-dead-code, r=notriddle
[rust.git] / tests / mir-opt / const_prop / read_immutable_static.main.ConstProp.diff
1 - // MIR for `main` before ConstProp
2 + // MIR for `main` after ConstProp
3   
4   fn main() -> () {
5       let mut _0: ();                      // return place in scope 0 at $DIR/read_immutable_static.rs:+0:11: +0:11
6       let _1: u8;                          // in scope 0 at $DIR/read_immutable_static.rs:+1:9: +1:10
7       let mut _2: u8;                      // in scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
8       let mut _3: &u8;                     // in scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
9       let mut _4: u8;                      // in scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
10       let mut _5: &u8;                     // in scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
11       scope 1 {
12           debug x => _1;                   // in scope 1 at $DIR/read_immutable_static.rs:+1:9: +1:10
13       }
14   
15       bb0: {
16           StorageLive(_1);                 // scope 0 at $DIR/read_immutable_static.rs:+1:9: +1:10
17           StorageLive(_2);                 // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
18           StorageLive(_3);                 // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
19           _3 = const {alloc1: &u8};        // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
20                                            // mir::Constant
21                                            // + span: $DIR/read_immutable_static.rs:8:13: 8:16
22                                            // + literal: Const { ty: &u8, val: Value(Scalar(alloc1)) }
23 -         _2 = (*_3);                      // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
24 +         _2 = const 2_u8;                 // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:16
25           StorageLive(_4);                 // scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
26           StorageLive(_5);                 // scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
27           _5 = const {alloc1: &u8};        // scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
28                                            // mir::Constant
29                                            // + span: $DIR/read_immutable_static.rs:8:19: 8:22
30                                            // + literal: Const { ty: &u8, val: Value(Scalar(alloc1)) }
31 -         _4 = (*_5);                      // scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
32 -         _1 = Add(move _2, move _4);      // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:22
33 +         _4 = const 2_u8;                 // scope 0 at $DIR/read_immutable_static.rs:+1:19: +1:22
34 +         _1 = const 4_u8;                 // scope 0 at $DIR/read_immutable_static.rs:+1:13: +1:22
35           StorageDead(_4);                 // scope 0 at $DIR/read_immutable_static.rs:+1:21: +1:22
36           StorageDead(_2);                 // scope 0 at $DIR/read_immutable_static.rs:+1:21: +1:22
37           StorageDead(_5);                 // scope 0 at $DIR/read_immutable_static.rs:+1:22: +1:23
38           StorageDead(_3);                 // scope 0 at $DIR/read_immutable_static.rs:+1:22: +1:23
39           StorageDead(_1);                 // scope 0 at $DIR/read_immutable_static.rs:+2:1: +2:2
40           return;                          // scope 0 at $DIR/read_immutable_static.rs:+2:2: +2:2
41       }
42   }
43   
44   alloc1 (static: FOO, size: 1, align: 1) {
45       02                                              │ .
46   }
47