2020-02-19 11:25:41 +01:00
|
|
|
// revisions: noopt opt opt_with_overflow_checks
|
2020-02-15 11:43:54 +01:00
|
|
|
//[noopt]compile-flags: -C opt-level=0
|
|
|
|
|
//[opt]compile-flags: -O
|
|
|
|
|
//[opt_with_overflow_checks]compile-flags: -C overflow-checks=on -O
|
2020-04-29 19:35:45 +10:00
|
|
|
// build-pass
|
2020-05-08 14:27:36 +03:00
|
|
|
// ignore-pass (test emits codegen-time warnings and verifies that they are not errors)
|
2020-09-20 15:30:46 +01:00
|
|
|
// normalize-stderr-test "shift left by `(64|32)_usize`, which" -> "shift left by `%BITS%`, which"
|
2019-09-27 20:09:52 -04:00
|
|
|
|
2020-02-15 11:43:54 +01:00
|
|
|
#![crate_type="lib"]
|
2022-09-21 13:05:20 +02:00
|
|
|
#![warn(arithmetic_overflow)]
|
2020-05-08 14:27:36 +03:00
|
|
|
|
2014-11-01 09:10:02 +01:00
|
|
|
|
2020-02-15 11:43:54 +01:00
|
|
|
pub trait Foo {
|
|
|
|
|
const N: i32;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: Foo> Foo for Vec<T> {
|
2020-04-29 19:35:45 +10:00
|
|
|
const N: i32 = T::N << 42; //~ WARN: arithmetic operation will overflow
|
2020-02-15 11:43:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn foo(x: i32) {
|
2020-04-29 19:35:45 +10:00
|
|
|
let _ = x << 42; //~ WARN: arithmetic operation will overflow
|
2020-02-15 11:43:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u8 << 7;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u8 << 8; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u16 << 15;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u16 << 16; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u32 << 31;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u32 << 32; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u64 << 63;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u64 << 64; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i8 << 7;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i8 << 8; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i16 << 15;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i16 << 16; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i32 << 31;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i32 << 32; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i64 << 63;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i64 << 64; //~ WARN: arithmetic operation will overflow
|
2014-11-01 09:10:02 +01:00
|
|
|
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u8 >> 7;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u8 >> 8; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u16 >> 15;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u16 >> 16; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u32 >> 31;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u32 >> 32; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1u64 >> 63;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u64 >> 64; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i8 >> 7;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i8 >> 8; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i16 >> 15;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i16 >> 16; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i32 >> 31;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i32 >> 32; //~ WARN: arithmetic operation will overflow
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = 1i64 >> 63;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i64 >> 64; //~ WARN: arithmetic operation will overflow
|
2014-11-01 09:10:02 +01:00
|
|
|
|
|
|
|
|
let n = 1u8;
|
2014-11-03 20:08:11 +01:00
|
|
|
let n = n << 7;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = n << 8; //~ WARN: arithmetic operation will overflow
|
2014-11-01 09:10:02 +01:00
|
|
|
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u8 << -8; //~ WARN: arithmetic operation will overflow
|
2018-01-16 09:28:27 +01:00
|
|
|
|
2015-06-30 08:53:50 -07:00
|
|
|
let n = 1i8<<(1isize+-1);
|
2020-02-15 11:43:54 +01:00
|
|
|
|
|
|
|
|
let n = 1u8 << (4+3);
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1u8 << (4+4); //~ WARN: arithmetic operation will overflow
|
2020-02-15 11:43:54 +01:00
|
|
|
let n = 1i64 >> [63][0];
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1i64 >> [64][0]; //~ WARN: arithmetic operation will overflow
|
2020-02-15 11:43:54 +01:00
|
|
|
|
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
|
const BITS: usize = 32;
|
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
|
|
|
|
const BITS: usize = 64;
|
2020-04-29 19:35:45 +10:00
|
|
|
let n = 1_isize << BITS; //~ WARN: arithmetic operation will overflow
|
|
|
|
|
let n = 1_usize << BITS; //~ WARN: arithmetic operation will overflow
|
2014-11-01 09:10:02 +01:00
|
|
|
}
|