summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/inline/unchecked_shifts.unchecked_shl_unsigned_bigger.Inline.panic-abort.diff
blob: 1ab1d01e5faca2c244cfa2650f3f78635eb4501a (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
- // MIR for `unchecked_shl_unsigned_bigger` before Inline
+ // MIR for `unchecked_shl_unsigned_bigger` after Inline
  
  fn unchecked_shl_unsigned_bigger(_1: u64, _2: u32) -> u64 {
      debug a => _1;
      debug b => _2;
      let mut _0: u64;
      let mut _3: u64;
      let mut _4: u32;
+     scope 1 (inlined core::num::<impl u64>::unchecked_shl) {
+         debug self => _3;
+         debug rhs => _4;
+         let mut _5: u64;
+         scope 2 {
+         }
+     }
  
      bb0: {
          StorageLive(_3);
          _3 = _1;
          StorageLive(_4);
          _4 = _2;
-         _0 = core::num::<impl u64>::unchecked_shl(move _3, move _4) -> [return: bb1, unwind unreachable];
-     }
- 
-     bb1: {
+         StorageLive(_5);
+         _5 = _4 as u64 (IntToInt);
+         _0 = ShlUnchecked(_3, move _5);
+         StorageDead(_5);
          StorageDead(_4);
          StorageDead(_3);
          return;
      }
  }