2022-03-17 08:49:10 -05:00
|
|
|
error: Undefined Behavior: `float_to_int_unchecked` intrinsic called on 3.40282347E+38 which cannot be represented in target type `i32`
|
2022-05-31 17:23:47 -05:00
|
|
|
--> RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/round.rs:LL:CC
|
|
|
|
|
|
|
|
|
LL | implement! { f32 }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ `float_to_int_unchecked` intrinsic called on 3.40282347E+38 which cannot be represented in target type `i32`
|
2022-03-17 08:49:10 -05:00
|
|
|
|
|
|
|
|
= 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
|
2022-07-02 09:11:39 -05:00
|
|
|
= note: backtrace:
|
2022-05-31 17:23:47 -05:00
|
|
|
= note: inside `core::core_simd::round::<impl std::simd::Simd<f32, 2_usize>>::to_int_unchecked::<i32>` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/round.rs:LL:CC
|
2022-03-17 08:49:10 -05:00
|
|
|
note: inside `main` at $DIR/simd-float-to-int.rs:LL:CC
|
|
|
|
--> $DIR/simd-float-to-int.rs:LL:CC
|
|
|
|
|
|
2022-06-19 22:43:35 -05:00
|
|
|
LL | let _x: i32x2 = f32x2::from_array([f32::MAX, f32::MIN]).to_int_unchecked();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-03-17 08:49:10 -05:00
|
|
|
= note: this error originates in the macro `implement` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|