summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/dont_inline_type_id.call.Inline.diff
blob: 80cfe07b0cbf633ff5b5e441b037083b55938202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- // MIR for `call` before Inline
+ // MIR for `call` after Inline
  
  fn call(_1: &T) -> TypeId {
      debug s => _1;
      let mut _0: std::any::TypeId;
      let mut _2: &T;
  
      bb0: {
          StorageLive(_2);
          _2 = &(*_1);
          _0 = <T as Any>::type_id(move _2) -> [return: bb1, unwind unreachable];
      }
  
      bb1: {
          StorageDead(_2);
          return;
      }
  }