summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/issue_66971.main.ConstProp.panic-abort.diff
blob: ff93c85e5869d3e4a09831a844db4ffe8899923b (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
28
29
30
31
32
33
34
35
36
37
- // MIR for `main` before ConstProp
+ // MIR for `main` after ConstProp
  
  fn main() -> () {
      let mut _0: ();
      let _1: ();
      let mut _2: ((), u8, u8);
      let mut _3: ();
  
      bb0: {
          StorageLive(_1);
          StorageLive(_2);
          StorageLive(_3);
          _3 = ();
-         _2 = (move _3, const 0_u8, const 0_u8);
+         _2 = const ((), 0_u8, 0_u8);
          StorageDead(_3);
-         _1 = encode(move _2) -> [return: bb1, unwind unreachable];
+         _1 = encode(const ((), 0_u8, 0_u8)) -> [return: bb1, unwind unreachable];
      }
  
      bb1: {
          StorageDead(_2);
          StorageDead(_1);
          _0 = const ();
          return;
      }
+ }
+ 
+ ALLOC0 (size: 2, align: 1) {
+     00 00                                           │ ..
+ }
+ 
+ ALLOC1 (size: 2, align: 1) {
+     00 00                                           │ ..
  }