mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
a277c901d9
This also remove safety information from MIR.
31 lines
783 B
Diff
31 lines
783 B
Diff
- // 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 {
|
|
debug a => _1;
|
|
debug b => _2;
|
|
let mut _0: u16;
|
|
let mut _3: u16;
|
|
let mut _4: u32;
|
|
+ scope 1 (inlined core::num::<impl u16>::unchecked_shl) {
|
|
+ debug self => _3;
|
|
+ debug rhs => _4;
|
|
+ }
|
|
|
|
bb0: {
|
|
StorageLive(_3);
|
|
_3 = _1;
|
|
StorageLive(_4);
|
|
_4 = _2;
|
|
- _0 = core::num::<impl u16>::unchecked_shl(move _3, move _4) -> [return: bb1, unwind continue];
|
|
- }
|
|
-
|
|
- bb1: {
|
|
+ _0 = ShlUnchecked(_3, _4);
|
|
StorageDead(_4);
|
|
StorageDead(_3);
|
|
return;
|
|
}
|
|
}
|
|
|