summaryrefslogtreecommitdiffstats
path: root/tests/ui/simd/intrinsic/generic-arithmetic-2.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:35 +0000
commitd1b2d29528b7794b41e66fc2136e395a02f8529b (patch)
treea4a17504b260206dec3cf55b2dca82929a348ac2 /tests/ui/simd/intrinsic/generic-arithmetic-2.rs
parentReleasing progress-linux version 1.72.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-d1b2d29528b7794b41e66fc2136e395a02f8529b.tar.xz
rustc-d1b2d29528b7794b41e66fc2136e395a02f8529b.zip
Merging upstream version 1.73.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/simd/intrinsic/generic-arithmetic-2.rs')
-rw-r--r--tests/ui/simd/intrinsic/generic-arithmetic-2.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/ui/simd/intrinsic/generic-arithmetic-2.rs b/tests/ui/simd/intrinsic/generic-arithmetic-2.rs
index 3576eed71..62fb5238b 100644
--- a/tests/ui/simd/intrinsic/generic-arithmetic-2.rs
+++ b/tests/ui/simd/intrinsic/generic-arithmetic-2.rs
@@ -27,6 +27,10 @@ extern "platform-intrinsic" {
fn simd_xor<T>(x: T, y: T) -> T;
fn simd_neg<T>(x: T) -> T;
+ fn simd_bswap<T>(x: T) -> T;
+ fn simd_bitreverse<T>(x: T) -> T;
+ fn simd_ctlz<T>(x: T) -> T;
+ fn simd_cttz<T>(x: T) -> T;
}
fn main() {
@@ -64,6 +68,14 @@ fn main() {
simd_neg(x);
simd_neg(z);
+ simd_bswap(x);
+ simd_bswap(y);
+ simd_bitreverse(x);
+ simd_bitreverse(y);
+ simd_ctlz(x);
+ simd_ctlz(y);
+ simd_cttz(x);
+ simd_cttz(y);
simd_add(0, 0);
@@ -87,6 +99,14 @@ fn main() {
simd_neg(0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
+ simd_bswap(0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
+ simd_bitreverse(0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
+ simd_ctlz(0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
+ simd_cttz(0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_shl(z, z);
@@ -99,5 +119,13 @@ fn main() {
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_xor(z, z);
//~^ ERROR unsupported operation on `f32x4` with element `f32`
+ simd_bswap(z);
+//~^ ERROR unsupported operation on `f32x4` with element `f32`
+ simd_bitreverse(z);
+//~^ ERROR unsupported operation on `f32x4` with element `f32`
+ simd_ctlz(z);
+//~^ ERROR unsupported operation on `f32x4` with element `f32`
+ simd_cttz(z);
+//~^ ERROR unsupported operation on `f32x4` with element `f32`
}
}