summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/transmute.unreachable_mut.ConstProp.64bit.diff
blob: c9d5ccf0bfdd191cdc0398276bc0feb078e48a9d (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
- // MIR for `unreachable_mut` before ConstProp
+ // MIR for `unreachable_mut` after ConstProp
  
  fn unreachable_mut() -> ! {
      let mut _0: !;
      let _1: &mut Never;
      let mut _2: &mut Never;
      scope 1 {
          debug x => _1;
      }
      scope 2 {
      }
  
      bb0: {
          StorageLive(_1);
          StorageLive(_2);
-         _2 = const 1_usize as &mut Never (Transmute);
+         _2 = const {0x1 as &mut Never};
          _1 = &mut (*_2);
          StorageDead(_2);
          unreachable;
      }
  }