2023-02-24 21:33:22 +00:00
|
|
|
- // MIR for `unchecked_shl_unsigned_smaller` before Inline
|
|
|
|
+ // MIR for `unchecked_shl_unsigned_smaller` after Inline
|
|
|
|
|
|
|
|
fn unchecked_shl_unsigned_smaller(_1: u16, _2: u32) -> u16 {
|
2023-06-06 13:47:00 +00:00
|
|
|
debug a => _1;
|
|
|
|
debug b => _2;
|
|
|
|
let mut _0: u16;
|
|
|
|
let mut _3: u16;
|
|
|
|
let mut _4: u32;
|
2023-06-16 22:21:34 +00:00
|
|
|
+ scope 1 (inlined core::num::<impl u16>::unchecked_shl) {
|
|
|
|
+ debug self => _3;
|
|
|
|
+ debug rhs => _4;
|
|
|
|
+ let mut _5: u16;
|
|
|
|
+ let mut _6: bool;
|
|
|
|
+ scope 2 {
|
|
|
|
+ }
|
|
|
|
+ }
|
2023-02-24 21:33:22 +00:00
|
|
|
|
|
|
|
bb0: {
|
2023-06-06 13:47:00 +00:00
|
|
|
StorageLive(_3);
|
|
|
|
_3 = _1;
|
|
|
|
StorageLive(_4);
|
|
|
|
_4 = _2;
|
2023-06-23 16:53:09 +00:00
|
|
|
- _0 = core::num::<impl u16>::unchecked_shl(move _3, move _4) -> [return: bb1, unwind continue];
|
2023-06-03 07:41:50 +00:00
|
|
|
- }
|
|
|
|
-
|
|
|
|
- bb1: {
|
2023-06-16 22:21:34 +00:00
|
|
|
+ StorageLive(_5);
|
|
|
|
+ StorageLive(_6);
|
2023-02-07 19:24:21 +00:00
|
|
|
+ _6 = Le(_4, const 65535_u32);
|
2023-06-16 22:21:34 +00:00
|
|
|
+ assume(move _6);
|
|
|
|
+ StorageDead(_6);
|
|
|
|
+ _5 = _4 as u16 (IntToInt);
|
2023-06-03 07:41:50 +00:00
|
|
|
+ _0 = ShlUnchecked(_3, move _5);
|
2023-06-16 22:21:34 +00:00
|
|
|
+ StorageDead(_5);
|
2023-06-06 13:47:00 +00:00
|
|
|
StorageDead(_4);
|
|
|
|
StorageDead(_3);
|
|
|
|
return;
|
2023-02-24 21:33:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|