16 lines
332 B
Rust
16 lines
332 B
Rust
// MIR for `unchecked_shl_unsigned_smaller` after PreCodegen
|
|
|
|
fn unchecked_shl_unsigned_smaller(_1: u16, _2: u32) -> u16 {
|
|
debug a => _1;
|
|
debug b => _2;
|
|
let mut _0: u16;
|
|
|
|
bb0: {
|
|
_0 = core::num::<impl u16>::unchecked_shl(_1, _2) -> [return: bb1, unwind unreachable];
|
|
}
|
|
|
|
bb1: {
|
|
return;
|
|
}
|
|
}
|