mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 14:57:14 +00:00
276 lines
16 KiB
Plaintext
276 lines
16 KiB
Plaintext
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:46:1
|
|
|
|
|
LL | extern "C" fn vector_ret_small(x: &i8x8) -> i8x8 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:52:1
|
|
|
|
|
LL | extern "C" fn vector_ret(x: &i8x16) -> i8x16 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:99:1
|
|
|
|
|
LL | / extern "C" fn vector_transparent_wrapper_ret_small(
|
|
LL | | x: &TransparentWrapper<i8x8>,
|
|
LL | | ) -> TransparentWrapper<i8x8> {
|
|
| |_____________________________^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:107:1
|
|
|
|
|
LL | / extern "C" fn vector_transparent_wrapper_ret(
|
|
LL | | x: &TransparentWrapper<i8x16>,
|
|
LL | | ) -> TransparentWrapper<i8x16> {
|
|
| |______________________________^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:123:1
|
|
|
|
|
LL | extern "C" fn vector_arg_small(x: i8x8) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:129:1
|
|
|
|
|
LL | extern "C" fn vector_arg(x: i8x16) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:141:1
|
|
|
|
|
LL | extern "C" fn vector_wrapper_arg_small(x: Wrapper<i8x8>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:147:1
|
|
|
|
|
LL | extern "C" fn vector_wrapper_arg(x: Wrapper<i8x16>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:159:1
|
|
|
|
|
LL | extern "C" fn vector_transparent_wrapper_arg_small(x: TransparentWrapper<i8x8>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:165:1
|
|
|
|
|
LL | extern "C" fn vector_transparent_wrapper_arg(x: TransparentWrapper<i8x16>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
|
|
error: aborting due to 10 previous errors
|
|
|
|
Future incompatibility report: Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:46:1
|
|
|
|
|
LL | extern "C" fn vector_ret_small(x: &i8x8) -> i8x8 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:52:1
|
|
|
|
|
LL | extern "C" fn vector_ret(x: &i8x16) -> i8x16 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:99:1
|
|
|
|
|
LL | / extern "C" fn vector_transparent_wrapper_ret_small(
|
|
LL | | x: &TransparentWrapper<i8x8>,
|
|
LL | | ) -> TransparentWrapper<i8x8> {
|
|
| |_____________________________^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:107:1
|
|
|
|
|
LL | / extern "C" fn vector_transparent_wrapper_ret(
|
|
LL | | x: &TransparentWrapper<i8x16>,
|
|
LL | | ) -> TransparentWrapper<i8x16> {
|
|
| |______________________________^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:123:1
|
|
|
|
|
LL | extern "C" fn vector_arg_small(x: i8x8) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:129:1
|
|
|
|
|
LL | extern "C" fn vector_arg(x: i8x16) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:141:1
|
|
|
|
|
LL | extern "C" fn vector_wrapper_arg_small(x: Wrapper<i8x8>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:147:1
|
|
|
|
|
LL | extern "C" fn vector_wrapper_arg(x: Wrapper<i8x16>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:159:1
|
|
|
|
|
LL | extern "C" fn vector_transparent_wrapper_arg_small(x: TransparentWrapper<i8x8>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Future breakage diagnostic:
|
|
error: this function definition uses a SIMD vector type that (with the chosen ABI) requires the `vector` target feature, which is not enabled
|
|
--> $DIR/simd-abi-checks-s390x.rs:165:1
|
|
|
|
|
LL | extern "C" fn vector_transparent_wrapper_arg(x: TransparentWrapper<i8x16>) -> i64 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #116558 <https://github.com/rust-lang/rust/issues/116558>
|
|
= help: consider enabling it globally (`-C target-feature=+vector`) or locally (`#[target_feature(enable="vector")]`)
|
|
note: the lint level is defined here
|
|
--> $DIR/simd-abi-checks-s390x.rs:15:9
|
|
|
|
|
LL | #![deny(abi_unsupported_vector_types)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|