rust/tests/fail/intrinsics/simd-div-overflow.stderr

16 lines
683 B
Plaintext
Raw Normal View History

error: Undefined Behavior: overflow in signed division (dividing MIN by -1)
--> $DIR/simd-div-overflow.rs:LL:CC
|
2022-06-19 22:43:35 -05:00
LL | simd_div(x, y);
| ^^^^^^^^^^^^^^ overflow in signed division (dividing MIN by -1)
|
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
= note: BACKTRACE:
= note: inside `main` at $DIR/simd-div-overflow.rs:LL:CC
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
error: aborting due to previous error