about summary refs log tree commit diff
path: root/tests/mir-opt/lower_intrinsics.read_via_copy_uninhabited.LowerIntrinsics.panic-abort.diff
blob: 8828549249e561b4c2b1c0c658432472d2d568a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- // MIR for `read_via_copy_uninhabited` before LowerIntrinsics
+ // MIR for `read_via_copy_uninhabited` after LowerIntrinsics
  
  fn read_via_copy_uninhabited(_1: &Never) -> Never {
      debug r => _1;
      let mut _0: Never;
      let mut _2: *const Never;
  
      bb0: {
          StorageLive(_2);
          _2 = &raw const (*_1);
-         _0 = read_via_copy::<Never>(move _2) -> unwind unreachable;
+         _0 = copy (*_2);
+         unreachable;
      }
  }