rust/tests/mir-opt/inline/unchecked_shifts.unchecked_shr_signed_smaller.Inline.panic-unwind.diff

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
587 B
Diff
Raw Normal View History

2023-02-24 15:33:22 -06:00
- // MIR for `unchecked_shr_signed_smaller` before Inline
+ // MIR for `unchecked_shr_signed_smaller` after Inline
fn unchecked_shr_signed_smaller(_1: i16, _2: u32) -> i16 {
2023-06-06 08:47:00 -05:00
debug a => _1;
debug b => _2;
let mut _0: i16;
let mut _3: i16;
let mut _4: u32;
2023-02-24 15:33:22 -06:00
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_3);
_3 = _1;
StorageLive(_4);
_4 = _2;
_0 = core::num::<impl i16>::unchecked_shr(move _3, move _4) -> bb1;
2023-02-24 15:33:22 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_4);
StorageDead(_3);
return;
2023-02-24 15:33:22 -06:00
}
}