rust/tests/pass/overflow_checks_off.rs

19 lines
579 B
Rust
Raw Normal View History

2022-07-08 11:08:32 -05:00
//@compile-flags: -C overflow-checks=off
2021-11-23 12:53:02 -06:00
// Check that we correctly implement the intended behavior of these operators
// when they are not being overflow-checked.
// FIXME: if we call the functions in `std::ops`, we still get the panics.
// Miri does not implement the codegen-time hack that backs `#[rustc_inherit_overflow_checks]`.
// use std::ops::*;
fn main() {
assert_eq!(-{ -0x80i8 }, -0x80);
2021-11-23 12:53:02 -06:00
assert_eq!(0xffu8 + 1, 0_u8);
assert_eq!(0u8 - 1, 0xff_u8);
assert_eq!(0xffu8 * 2, 0xfe_u8);
assert_eq!(1u8 << 9, 2_u8);
assert_eq!(2u8 >> 9, 1_u8);
}