summary refs log tree commit diff
path: root/src/test/mir-opt/lower_intrinsics.size_of.LowerIntrinsics.diff
blob: b5a77702a8ef0a0345846c8a2a407574fd927ced (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 `size_of` before LowerIntrinsics
+ // MIR for `size_of` after LowerIntrinsics
  
  fn size_of() -> usize {
      let mut _0: usize;                   // return place in scope 0 at $DIR/lower_intrinsics.rs:13:24: 13:29
  
      bb0: {
-         _0 = std::intrinsics::size_of::<T>() -> bb1; // scope 0 at $DIR/lower_intrinsics.rs:14:5: 14:37
-                                          // mir::Constant
-                                          // + span: $DIR/lower_intrinsics.rs:14:5: 14:35
-                                          // + literal: Const { ty: extern "rust-intrinsic" fn() -> usize {std::intrinsics::size_of::<T>}, val: Value(Scalar(<ZST>)) }
+         _0 = SizeOf(T);                  // scope 0 at $DIR/lower_intrinsics.rs:14:5: 14:37
+         goto -> bb1;                     // scope 0 at $DIR/lower_intrinsics.rs:14:5: 14:37
      }
  
      bb1: {
          return;                          // scope 0 at $DIR/lower_intrinsics.rs:15:2: 15:2
      }
  
      bb2 (cleanup): {
          resume;                          // scope 0 at $DIR/lower_intrinsics.rs:13:1: 15:2
      }
  }