1
Fork 0

Rollup merge of #64063 - JohnTitor:fix-const-err, r=oli-obk

Fix const_err with `-(-0.0)`

Fixes #64059

r? @oli-obk
This commit is contained in:
Mazdak Farrokhzad 2019-09-05 12:11:14 +02:00 committed by GitHub
commit 2238d19515
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 477 additions and 53 deletions

View file

@ -405,13 +405,16 @@ impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
} }
let arg = self.eval_operand(arg, source_info)?; let arg = self.eval_operand(arg, source_info)?;
let oflo_check = self.tcx.sess.overflow_checks();
let val = self.use_ecx(source_info, |this| { let val = self.use_ecx(source_info, |this| {
let prim = this.ecx.read_immediate(arg)?; let prim = this.ecx.read_immediate(arg)?;
match op { match op {
UnOp::Neg => { UnOp::Neg => {
// Need to do overflow check here: For actual CTFE, MIR // We check overflow in debug mode already
// generation emits code that does this before calling the op. // so should only check in release mode.
if prim.to_bits()? == (1 << (prim.layout.size.bits() - 1)) { if !oflo_check
&& prim.layout.ty.is_signed()
&& prim.to_bits()? == (1 << (prim.layout.size.bits() - 1)) {
throw_panic!(OverflowNeg) throw_panic!(OverflowNeg)
} }
} }
@ -485,7 +488,9 @@ impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
Scalar::from_bool(overflow).into(), Scalar::from_bool(overflow).into(),
) )
} else { } else {
if overflow { // We check overflow in debug mode already
// so should only check in release mode.
if !self.tcx.sess.overflow_checks() && overflow {
let err = err_panic!(Overflow(op)).into(); let err = err_panic!(Overflow(op)).into();
let _: Option<()> = self.use_ecx(source_info, |_| Err(err)); let _: Option<()> = self.use_ecx(source_info, |_| Err(err));
return None; return None;

View file

@ -5,6 +5,7 @@
#![feature(rustc_attrs)] #![feature(rustc_attrs)]
#![allow(exceeding_bitshifts)] #![allow(exceeding_bitshifts)]
#![deny(const_err)] #![deny(const_err)]
fn black_box<T>(_: T) { fn black_box<T>(_: T) {
@ -21,7 +22,7 @@ fn main() {
let d = 42u8 - (42u8 + 1); let d = 42u8 - (42u8 + 1);
//~^ ERROR const_err //~^ ERROR const_err
let _e = [5u8][1]; let _e = [5u8][1];
//~^ ERROR const_err //~^ ERROR index out of bounds
black_box(a); black_box(a);
black_box(b); black_box(b);
black_box(c); black_box(c);

View file

@ -1,35 +1,35 @@
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/const-err2.rs:15:13 --> $DIR/const-err2.rs:16:13
| |
LL | let a = -std::i8::MIN; LL | let a = -std::i8::MIN;
| ^^^^^^^^^^^^^ attempt to negate with overflow | ^^^^^^^^^^^^^ attempt to negate with overflow
| |
note: lint level defined here note: lint level defined here
--> $DIR/const-err2.rs:8:9 --> $DIR/const-err2.rs:9:9
| |
LL | #![deny(const_err)] LL | #![deny(const_err)]
| ^^^^^^^^^ | ^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/const-err2.rs:17:13 --> $DIR/const-err2.rs:18:13
| |
LL | let b = 200u8 + 200u8 + 200u8; LL | let b = 200u8 + 200u8 + 200u8;
| ^^^^^^^^^^^^^ attempt to add with overflow | ^^^^^^^^^^^^^ attempt to add with overflow
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/const-err2.rs:19:13 --> $DIR/const-err2.rs:20:13
| |
LL | let c = 200u8 * 4; LL | let c = 200u8 * 4;
| ^^^^^^^^^ attempt to multiply with overflow | ^^^^^^^^^ attempt to multiply with overflow
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/const-err2.rs:21:13 --> $DIR/const-err2.rs:22:13
| |
LL | let d = 42u8 - (42u8 + 1); LL | let d = 42u8 - (42u8 + 1);
| ^^^^^^^^^^^^^^^^^ attempt to subtract with overflow | ^^^^^^^^^^^^^^^^^ attempt to subtract with overflow
error: index out of bounds: the len is 1 but the index is 1 error: index out of bounds: the len is 1 but the index is 1
--> $DIR/const-err2.rs:23:14 --> $DIR/const-err2.rs:24:14
| |
LL | let _e = [5u8][1]; LL | let _e = [5u8][1];
| ^^^^^^^^ | ^^^^^^^^

View file

@ -0,0 +1,30 @@
// needed because negating int::MIN will behave differently between
// optimized compilation and unoptimized compilation and thus would
// lead to different lints being emitted
// compile-flags: -C overflow-checks=on -O
#![feature(rustc_attrs)]
#![allow(exceeding_bitshifts)]
#![deny(const_err)]
fn black_box<T>(_: T) {
unimplemented!()
}
fn main() {
let a = -std::i8::MIN;
//~^ ERROR const_err
let b = 200u8 + 200u8 + 200u8;
//~^ ERROR const_err
let c = 200u8 * 4;
//~^ ERROR const_err
let d = 42u8 - (42u8 + 1);
//~^ ERROR const_err
let _e = [5u8][1];
//~^ ERROR const_err
black_box(a);
black_box(b);
black_box(c);
black_box(d);
}

View file

@ -0,0 +1,38 @@
error: attempt to negate with overflow
--> $DIR/const-err3.rs:16:13
|
LL | let a = -std::i8::MIN;
| ^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/const-err3.rs:9:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^
error: attempt to add with overflow
--> $DIR/const-err3.rs:18:13
|
LL | let b = 200u8 + 200u8 + 200u8;
| ^^^^^^^^^^^^^
error: attempt to multiply with overflow
--> $DIR/const-err3.rs:20:13
|
LL | let c = 200u8 * 4;
| ^^^^^^^^^
error: attempt to subtract with overflow
--> $DIR/const-err3.rs:22:13
|
LL | let d = 42u8 - (42u8 + 1);
| ^^^^^^^^^^^^^^^^^
error: index out of bounds: the len is 1 but the index is 1
--> $DIR/const-err3.rs:24:14
|
LL | let _e = [5u8][1];
| ^^^^^^^^
error: aborting due to 5 previous errors

View file

@ -5,7 +5,7 @@
fn main() { fn main() {
println!("{}", 0u32 - 1); println!("{}", 0u32 - 1);
let _x = 0u32 - 1; let _x = 0u32 - 1;
//~^ ERROR this expression will panic at runtime [const_err] //~^ ERROR const_err
println!("{}", 1/(1-1)); println!("{}", 1/(1-1));
//~^ ERROR attempt to divide by zero [const_err] //~^ ERROR attempt to divide by zero [const_err]
//~| ERROR reaching this expression at runtime will panic or abort [const_err] //~| ERROR reaching this expression at runtime will panic or abort [const_err]

View file

@ -0,0 +1,22 @@
// compile-flags: -C overflow-checks=on -O
#![deny(const_err)]
fn main() {
println!("{}", 0u32 - 1);
//~^ ERROR attempt to subtract with overflow
let _x = 0u32 - 1;
//~^ ERROR attempt to subtract with overflow
println!("{}", 1/(1-1));
//~^ ERROR attempt to divide by zero [const_err]
//~| ERROR reaching this expression at runtime will panic or abort [const_err]
let _x = 1/(1-1);
//~^ ERROR const_err
//~| ERROR const_err
println!("{}", 1/(false as u32));
//~^ ERROR attempt to divide by zero [const_err]
//~| ERROR reaching this expression at runtime will panic or abort [const_err]
let _x = 1/(false as u32);
//~^ ERROR const_err
//~| ERROR const_err
}

View file

@ -0,0 +1,68 @@
error: attempt to subtract with overflow
--> $DIR/promoted_errors2.rs:6:20
|
LL | println!("{}", 0u32 - 1);
| ^^^^^^^^
|
note: lint level defined here
--> $DIR/promoted_errors2.rs:3:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^
error: attempt to subtract with overflow
--> $DIR/promoted_errors2.rs:8:14
|
LL | let _x = 0u32 - 1;
| ^^^^^^^^
error: attempt to divide by zero
--> $DIR/promoted_errors2.rs:10:20
|
LL | println!("{}", 1/(1-1));
| ^^^^^^^
error: reaching this expression at runtime will panic or abort
--> $DIR/promoted_errors2.rs:10:20
|
LL | println!("{}", 1/(1-1));
| ^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/promoted_errors2.rs:13:14
|
LL | let _x = 1/(1-1);
| ^^^^^^^
error: this expression will panic at runtime
--> $DIR/promoted_errors2.rs:13:14
|
LL | let _x = 1/(1-1);
| ^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/promoted_errors2.rs:16:20
|
LL | println!("{}", 1/(false as u32));
| ^^^^^^^^^^^^^^^^
error: reaching this expression at runtime will panic or abort
--> $DIR/promoted_errors2.rs:16:20
|
LL | println!("{}", 1/(false as u32));
| ^^^^^^^^^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/promoted_errors2.rs:19:14
|
LL | let _x = 1/(false as u32);
| ^^^^^^^^^^^^^^^^
error: this expression will panic at runtime
--> $DIR/promoted_errors2.rs:19:14
|
LL | let _x = 1/(false as u32);
| ^^^^^^^^^^^^^^^^ attempt to divide by zero
error: aborting due to 10 previous errors

View file

@ -0,0 +1,6 @@
// compile-flags: -C overflow-checks=on -O
// run-pass
fn main() {
let _ = -(-0.0);
}

View file

@ -0,0 +1,5 @@
// run-pass
fn main() {
let _ = -(-0.0);
}

View file

@ -1,3 +1,5 @@
// compile-flags: -O
#![deny(const_err)] #![deny(const_err)]
use std::{isize, i8, i16, i32, i64}; use std::{isize, i8, i16, i32, i64};

View file

@ -1,245 +1,245 @@
error: attempt to divide with overflow error: attempt to divide with overflow
--> $DIR/issue-8460-const.rs:7:36 --> $DIR/issue-8460-const.rs:9:36
| |
LL | assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^
| |
note: lint level defined here note: lint level defined here
--> $DIR/issue-8460-const.rs:1:9 --> $DIR/issue-8460-const.rs:3:9
| |
LL | #![deny(const_err)] LL | #![deny(const_err)]
| ^^^^^^^^^ | ^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:7:36 --> $DIR/issue-8460-const.rs:9:36
| |
LL | assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^^^ attempt to divide with overflow | ^^^^^^^^^^^^^^^ attempt to divide with overflow
error: attempt to divide with overflow error: attempt to divide with overflow
--> $DIR/issue-8460-const.rs:10:36 --> $DIR/issue-8460-const.rs:12:36
| |
LL | assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^ | ^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:10:36 --> $DIR/issue-8460-const.rs:12:36
| |
LL | assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^ attempt to divide with overflow | ^^^^^^^^^^^^ attempt to divide with overflow
error: attempt to divide with overflow error: attempt to divide with overflow
--> $DIR/issue-8460-const.rs:13:36 --> $DIR/issue-8460-const.rs:15:36
| |
LL | assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:13:36 --> $DIR/issue-8460-const.rs:15:36
| |
LL | assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^ attempt to divide with overflow | ^^^^^^^^^^^^^ attempt to divide with overflow
error: attempt to divide with overflow error: attempt to divide with overflow
--> $DIR/issue-8460-const.rs:16:36 --> $DIR/issue-8460-const.rs:18:36
| |
LL | assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:16:36 --> $DIR/issue-8460-const.rs:18:36
| |
LL | assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^ attempt to divide with overflow | ^^^^^^^^^^^^^ attempt to divide with overflow
error: attempt to divide with overflow error: attempt to divide with overflow
--> $DIR/issue-8460-const.rs:19:36 --> $DIR/issue-8460-const.rs:21:36
| |
LL | assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:19:36 --> $DIR/issue-8460-const.rs:21:36
| |
LL | assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^ attempt to divide with overflow | ^^^^^^^^^^^^^ attempt to divide with overflow
error: attempt to divide by zero error: attempt to divide by zero
--> $DIR/issue-8460-const.rs:22:36 --> $DIR/issue-8460-const.rs:24:36
| |
LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
| ^^^^^^^^^^ | ^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:22:36 --> $DIR/issue-8460-const.rs:24:36
| |
LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
| ^^^^^^^^^^ attempt to divide by zero | ^^^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero error: attempt to divide by zero
--> $DIR/issue-8460-const.rs:25:36 --> $DIR/issue-8460-const.rs:27:36
| |
LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
| ^^^^^^^ | ^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:25:36 --> $DIR/issue-8460-const.rs:27:36
| |
LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
| ^^^^^^^ attempt to divide by zero | ^^^^^^^ attempt to divide by zero
error: attempt to divide by zero error: attempt to divide by zero
--> $DIR/issue-8460-const.rs:28:36 --> $DIR/issue-8460-const.rs:30:36
| |
LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
| ^^^^^^^^ | ^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:28:36 --> $DIR/issue-8460-const.rs:30:36
| |
LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
| ^^^^^^^^ attempt to divide by zero | ^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero error: attempt to divide by zero
--> $DIR/issue-8460-const.rs:31:36 --> $DIR/issue-8460-const.rs:33:36
| |
LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
| ^^^^^^^^ | ^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:31:36 --> $DIR/issue-8460-const.rs:33:36
| |
LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
| ^^^^^^^^ attempt to divide by zero | ^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero error: attempt to divide by zero
--> $DIR/issue-8460-const.rs:34:36 --> $DIR/issue-8460-const.rs:36:36
| |
LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
| ^^^^^^^^ | ^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:34:36 --> $DIR/issue-8460-const.rs:36:36
| |
LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
| ^^^^^^^^ attempt to divide by zero | ^^^^^^^^ attempt to divide by zero
error: attempt to calculate the remainder with overflow error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const.rs:37:36 --> $DIR/issue-8460-const.rs:39:36
| |
LL | assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:37:36 --> $DIR/issue-8460-const.rs:39:36
| |
LL | assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^^^ attempt to calculate the remainder with overflow | ^^^^^^^^^^^^^^^ attempt to calculate the remainder with overflow
error: attempt to calculate the remainder with overflow error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const.rs:40:36 --> $DIR/issue-8460-const.rs:42:36
| |
LL | assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^ | ^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:40:36 --> $DIR/issue-8460-const.rs:42:36
| |
LL | assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^ attempt to calculate the remainder with overflow | ^^^^^^^^^^^^ attempt to calculate the remainder with overflow
error: attempt to calculate the remainder with overflow error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const.rs:43:36 --> $DIR/issue-8460-const.rs:45:36
| |
LL | assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:43:36 --> $DIR/issue-8460-const.rs:45:36
| |
LL | assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^ attempt to calculate the remainder with overflow | ^^^^^^^^^^^^^ attempt to calculate the remainder with overflow
error: attempt to calculate the remainder with overflow error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const.rs:46:36 --> $DIR/issue-8460-const.rs:48:36
| |
LL | assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:46:36 --> $DIR/issue-8460-const.rs:48:36
| |
LL | assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^ attempt to calculate the remainder with overflow | ^^^^^^^^^^^^^ attempt to calculate the remainder with overflow
error: attempt to calculate the remainder with overflow error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const.rs:49:36 --> $DIR/issue-8460-const.rs:51:36
| |
LL | assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:49:36 --> $DIR/issue-8460-const.rs:51:36
| |
LL | assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err()); LL | assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^ attempt to calculate the remainder with overflow | ^^^^^^^^^^^^^ attempt to calculate the remainder with overflow
error: attempt to calculate the remainder with a divisor of zero error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const.rs:52:36 --> $DIR/issue-8460-const.rs:54:36
| |
LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
| ^^^^^^^^^^ | ^^^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:52:36 --> $DIR/issue-8460-const.rs:54:36
| |
LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
| ^^^^^^^^^^ attempt to calculate the remainder with a divisor of zero | ^^^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const.rs:55:36 --> $DIR/issue-8460-const.rs:57:36
| |
LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
| ^^^^^^^ | ^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:55:36 --> $DIR/issue-8460-const.rs:57:36
| |
LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
| ^^^^^^^ attempt to calculate the remainder with a divisor of zero | ^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const.rs:58:36 --> $DIR/issue-8460-const.rs:60:36
| |
LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
| ^^^^^^^^ | ^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:58:36 --> $DIR/issue-8460-const.rs:60:36
| |
LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
| ^^^^^^^^ attempt to calculate the remainder with a divisor of zero | ^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const.rs:61:36 --> $DIR/issue-8460-const.rs:63:36
| |
LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
| ^^^^^^^^ | ^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:61:36 --> $DIR/issue-8460-const.rs:63:36
| |
LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
| ^^^^^^^^ attempt to calculate the remainder with a divisor of zero | ^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const.rs:64:36 --> $DIR/issue-8460-const.rs:66:36
| |
LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
| ^^^^^^^^ | ^^^^^^^^
error: this expression will panic at runtime error: this expression will panic at runtime
--> $DIR/issue-8460-const.rs:64:36 --> $DIR/issue-8460-const.rs:66:36
| |
LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err()); LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
| ^^^^^^^^ attempt to calculate the remainder with a divisor of zero | ^^^^^^^^ attempt to calculate the remainder with a divisor of zero

View file

@ -0,0 +1,59 @@
// compile-flags: -C overflow-checks=on -O
#![deny(const_err)]
use std::{isize, i8, i16, i32, i64};
use std::thread;
fn main() {
assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err());
//~^ ERROR attempt to divide with overflow
assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err());
//~^ ERROR attempt to divide with overflow
assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err());
//~^ ERROR attempt to divide with overflow
assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err());
//~^ ERROR attempt to divide with overflow
assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err());
//~^ ERROR attempt to divide with overflow
assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
//~^ ERROR attempt to divide by zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
//~^ ERROR attempt to divide by zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
//~^ ERROR attempt to divide by zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
//~^ ERROR attempt to divide by zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
//~^ ERROR attempt to divide by zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with overflow
assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with overflow
assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with overflow
assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with overflow
assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with overflow
assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with a divisor of zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with a divisor of zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with a divisor of zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with a divisor of zero
//~| ERROR this expression will panic at runtime
assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
//~^ ERROR attempt to calculate the remainder with a divisor of zero
//~| ERROR this expression will panic at runtime
}

View file

@ -0,0 +1,188 @@
error: attempt to divide with overflow
--> $DIR/issue-8460-const2.rs:9:36
|
LL | assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/issue-8460-const2.rs:3:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^
error: attempt to divide with overflow
--> $DIR/issue-8460-const2.rs:11:36
|
LL | assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^
error: attempt to divide with overflow
--> $DIR/issue-8460-const2.rs:13:36
|
LL | assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^
error: attempt to divide with overflow
--> $DIR/issue-8460-const2.rs:15:36
|
LL | assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^
error: attempt to divide with overflow
--> $DIR/issue-8460-const2.rs:17:36
|
LL | assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err());
| ^^^^^^^^^^^^^
error: attempt to divide by zero
--> $DIR/issue-8460-const2.rs:19:36
|
LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
| ^^^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:19:36
|
LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
| ^^^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/issue-8460-const2.rs:22:36
|
LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
| ^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:22:36
|
LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
| ^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/issue-8460-const2.rs:25:36
|
LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
| ^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:25:36
|
LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
| ^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/issue-8460-const2.rs:28:36
|
LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
| ^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:28:36
|
LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
| ^^^^^^^^ attempt to divide by zero
error: attempt to divide by zero
--> $DIR/issue-8460-const2.rs:31:36
|
LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
| ^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:31:36
|
LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
| ^^^^^^^^ attempt to divide by zero
error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const2.rs:34:36
|
LL | assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^^^
error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const2.rs:36:36
|
LL | assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^
error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const2.rs:38:36
|
LL | assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^
error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const2.rs:40:36
|
LL | assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^
error: attempt to calculate the remainder with overflow
--> $DIR/issue-8460-const2.rs:42:36
|
LL | assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err());
| ^^^^^^^^^^^^^
error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const2.rs:44:36
|
LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
| ^^^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:44:36
|
LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
| ^^^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const2.rs:47:36
|
LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
| ^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:47:36
|
LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
| ^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const2.rs:50:36
|
LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
| ^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:50:36
|
LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
| ^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const2.rs:53:36
|
LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
| ^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:53:36
|
LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
| ^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: attempt to calculate the remainder with a divisor of zero
--> $DIR/issue-8460-const2.rs:56:36
|
LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
| ^^^^^^^^
error: this expression will panic at runtime
--> $DIR/issue-8460-const2.rs:56:36
|
LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
| ^^^^^^^^ attempt to calculate the remainder with a divisor of zero
error: aborting due to 30 previous errors