]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/intrinsics/simd-float-to-int.stderr
Add tests for #41731
[rust.git] / src / tools / miri / tests / fail / intrinsics / simd-float-to-int.stderr
1 error: Undefined Behavior: `float_to_int_unchecked` intrinsic called on 3.40282347E+38 which cannot be represented in target type `i32`
2   --> RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/vector.rs:LL:CC
3    |
4 LL |         unsafe { intrinsics::simd_cast(self) }
5    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^ `float_to_int_unchecked` intrinsic called on 3.40282347E+38 which cannot be represented in target type `i32`
6    |
7    = help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
8    = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
9    = note: BACKTRACE:
10    = note: inside `std::simd::Simd::<f32, 2>::to_int_unchecked::<i32>` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/vector.rs:LL:CC
11 note: inside `main` at $DIR/simd-float-to-int.rs:LL:CC
12   --> $DIR/simd-float-to-int.rs:LL:CC
13    |
14 LL |         let _x: i32x2 = f32x2::from_array([f32::MAX, f32::MIN]).to_int_unchecked();
15    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
16
17 note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
18
19 error: aborting due to previous error
20