summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/issue_66971.main.ConstProp.diff
blob: 488e772d0ea8b3c735129c3db20d0b71a0aec860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- // MIR for `main` before ConstProp
+ // MIR for `main` after ConstProp
  
  fn main() -> () {
      let mut _0: ();                      // return place in scope 0 at $DIR/issue_66971.rs:+0:11: +0:11
      let _1: ();                          // in scope 0 at $DIR/issue_66971.rs:+1:5: +1:23
      let mut _2: ((), u8, u8);            // in scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
  
      bb0: {
          StorageLive(_1);                 // scope 0 at $DIR/issue_66971.rs:+1:5: +1:23
          StorageLive(_2);                 // scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
          Deinit(_2);                      // scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
          (_2.1: u8) = const 0_u8;         // scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
          (_2.2: u8) = const 0_u8;         // scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
          _1 = encode(move _2) -> bb1;     // scope 0 at $DIR/issue_66971.rs:+1:5: +1:23
                                           // mir::Constant
                                           // + span: $DIR/issue_66971.rs:17:5: 17:11
                                           // + literal: Const { ty: fn(((), u8, u8)) {encode}, val: Value(<ZST>) }
      }
  
      bb1: {
          StorageDead(_2);                 // scope 0 at $DIR/issue_66971.rs:+1:22: +1:23
          StorageDead(_1);                 // scope 0 at $DIR/issue_66971.rs:+1:23: +1:24
          return;                          // scope 0 at $DIR/issue_66971.rs:+2:2: +2:2
      }
  }