2023-06-08 02:18:34 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
2023-02-24 15:33:22 -06:00
|
|
|
#![crate_type = "lib"]
|
2023-09-06 22:24:23 -05:00
|
|
|
#![feature(unchecked_shifts)]
|
2023-02-24 15:33:22 -06:00
|
|
|
|
|
|
|
//@ compile-flags: -Zmir-opt-level=2 -Zinline-mir
|
|
|
|
|
2024-03-30 02:36:45 -05:00
|
|
|
// These used to be more interesting when the library had to fix the RHS type.
|
2024-04-02 12:21:20 -05:00
|
|
|
// After MCP#693, though, that's the backend's problem, not something in MIR.
|
2024-03-30 02:36:45 -05:00
|
|
|
|
2023-02-24 15:33:22 -06:00
|
|
|
// EMIT_MIR unchecked_shifts.unchecked_shl_unsigned_smaller.Inline.diff
|
|
|
|
// EMIT_MIR unchecked_shifts.unchecked_shl_unsigned_smaller.PreCodegen.after.mir
|
|
|
|
pub unsafe fn unchecked_shl_unsigned_smaller(a: u16, b: u32) -> u16 {
|
2023-10-21 00:18:02 -05:00
|
|
|
// CHECK-LABEL: fn unchecked_shl_unsigned_smaller(
|
|
|
|
// CHECK: (inlined core::num::<impl u16>::unchecked_shl)
|
2023-02-24 15:33:22 -06:00
|
|
|
a.unchecked_shl(b)
|
|
|
|
}
|
|
|
|
|
2023-06-16 17:21:34 -05:00
|
|
|
// EMIT_MIR unchecked_shifts.unchecked_shr_signed_bigger.Inline.diff
|
|
|
|
// EMIT_MIR unchecked_shifts.unchecked_shr_signed_bigger.PreCodegen.after.mir
|
|
|
|
pub unsafe fn unchecked_shr_signed_bigger(a: i64, b: u32) -> i64 {
|
2023-10-21 00:18:02 -05:00
|
|
|
// CHECK-LABEL: fn unchecked_shr_signed_bigger(
|
|
|
|
// CHECK: (inlined core::num::<impl i64>::unchecked_shr)
|
2023-06-16 17:21:34 -05:00
|
|
|
a.unchecked_shr(b)
|
|
|
|
}
|