mirror of https://github.com/rust-lang/rust.git
11 lines
472 B
Plaintext
11 lines
472 B
Plaintext
error: this function definition uses SIMD vector type `SseVector` which (with the chosen ABI) requires the `sse` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-sse.rs:19:1
|
|
|
|
|
LL | pub unsafe extern "C" fn f(_: SseVector) {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= help: consider enabling it globally (`-C target-feature=+sse`) or locally (`#[target_feature(enable="sse")]`)
|
|
|
|
error: aborting due to 1 previous error
|
|
|