rust/tests/ui/simd/intrinsic/generic-comparison.stderr

112 lines
4.5 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD input type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:27:9
2018-08-08 12:28:26 +00:00
|
LL | simd_eq::<i32, i32>(0, 0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected SIMD input type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:29:9
2018-08-08 12:28:26 +00:00
|
LL | simd_ne::<i32, i32>(0, 0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected SIMD input type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:31:9
2018-08-08 12:28:26 +00:00
|
LL | simd_lt::<i32, i32>(0, 0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected SIMD input type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:33:9
2018-08-08 12:28:26 +00:00
|
LL | simd_le::<i32, i32>(0, 0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected SIMD input type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:35:9
2018-08-08 12:28:26 +00:00
|
LL | simd_gt::<i32, i32>(0, 0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected SIMD input type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:37:9
2018-08-08 12:28:26 +00:00
|
LL | simd_ge::<i32, i32>(0, 0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD return type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:40:9
2018-08-08 12:28:26 +00:00
|
LL | simd_eq::<_, i32>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected SIMD return type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:42:9
2018-08-08 12:28:26 +00:00
|
LL | simd_ne::<_, i32>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected SIMD return type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:44:9
2018-08-08 12:28:26 +00:00
|
LL | simd_lt::<_, i32>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected SIMD return type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:46:9
2018-08-08 12:28:26 +00:00
|
LL | simd_le::<_, i32>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected SIMD return type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:48:9
2018-08-08 12:28:26 +00:00
|
LL | simd_gt::<_, i32>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected SIMD return type, found non-SIMD `i32`
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:50:9
2018-08-08 12:28:26 +00:00
|
LL | simd_ge::<_, i32>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:53:9
2018-08-08 12:28:26 +00:00
|
LL | simd_eq::<_, i16x8>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:55:9
2018-08-08 12:28:26 +00:00
|
LL | simd_ne::<_, i16x8>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:57:9
2018-08-08 12:28:26 +00:00
|
LL | simd_lt::<_, i16x8>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:59:9
2018-08-08 12:28:26 +00:00
|
LL | simd_le::<_, i16x8>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:61:9
2018-08-08 12:28:26 +00:00
|
LL | simd_gt::<_, i16x8>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
2024-08-22 08:28:20 +00:00
--> $DIR/generic-comparison.rs:63:9
2018-08-08 12:28:26 +00:00
|
LL | simd_ge::<_, i16x8>(x, x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 18 previous errors
For more information about this error, try `rustc --explain E0511`.