]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/issue_67019.main.ConstProp.diff
Auto merge of #107529 - Zoxc:inline-tweak-profile, r=cjgillot
[rust.git] / tests / mir-opt / const_prop / issue_67019.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/issue_67019.rs:+0:11: +0:11
6       let _1: ();                          // in scope 0 at $DIR/issue_67019.rs:+1:5: +1:20
7       let mut _2: ((u8, u8),);             // in scope 0 at $DIR/issue_67019.rs:+1:10: +1:19
8       let mut _3: (u8, u8);                // in scope 0 at $DIR/issue_67019.rs:+1:11: +1:17
9   
10       bb0: {
11           StorageLive(_1);                 // scope 0 at $DIR/issue_67019.rs:+1:5: +1:20
12           StorageLive(_2);                 // scope 0 at $DIR/issue_67019.rs:+1:10: +1:19
13           StorageLive(_3);                 // scope 0 at $DIR/issue_67019.rs:+1:11: +1:17
14 -         _3 = (const 1_u8, const 2_u8);   // scope 0 at $DIR/issue_67019.rs:+1:11: +1:17
15 +         _3 = const (1_u8, 2_u8);         // scope 0 at $DIR/issue_67019.rs:+1:11: +1:17
16           _2 = (move _3,);                 // scope 0 at $DIR/issue_67019.rs:+1:10: +1:19
17           StorageDead(_3);                 // scope 0 at $DIR/issue_67019.rs:+1:18: +1:19
18           _1 = test(move _2) -> bb1;       // scope 0 at $DIR/issue_67019.rs:+1:5: +1:20
19                                            // mir::Constant
20                                            // + span: $DIR/issue_67019.rs:12:5: 12:9
21                                            // + literal: Const { ty: fn(((u8, u8),)) {test}, val: Value(<ZST>) }
22       }
23   
24       bb1: {
25           StorageDead(_2);                 // scope 0 at $DIR/issue_67019.rs:+1:19: +1:20
26           StorageDead(_1);                 // scope 0 at $DIR/issue_67019.rs:+1:20: +1:21
27           return;                          // scope 0 at $DIR/issue_67019.rs:+2:2: +2:2
28       }
29   }
30