summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/simd/vuzpqp16.x
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/aarch64/simd/vuzpqp16.x')
-rw-r--r--gcc/testsuite/gcc.target/aarch64/simd/vuzpqp16.x26
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/simd/vuzpqp16.x b/gcc/testsuite/gcc.target/aarch64/simd/vuzpqp16.x
new file mode 100644
index 00000000000..d4e08f74631
--- /dev/null
+++ b/gcc/testsuite/gcc.target/aarch64/simd/vuzpqp16.x
@@ -0,0 +1,26 @@
+extern void abort (void);
+
+poly16x8x2_t
+test_vuzpqp16 (poly16x8_t _a, poly16x8_t _b)
+{
+ return vuzpq_p16 (_a, _b);
+}
+
+int
+main (int argc, char **argv)
+{
+ int i;
+ poly16_t first[] = {1, 2, 3, 4, 5, 6, 7, 8};
+ poly16_t second[] = {9, 10, 11, 12, 13, 14, 15, 16};
+ poly16x8x2_t result = test_vuzpqp16 (vld1q_p16 (first), vld1q_p16 (second));
+ poly16_t exp1[] = {1, 3, 5, 7, 9, 11, 13, 15};
+ poly16_t exp2[] = {2, 4, 6, 8, 10, 12, 14, 16};
+ poly16x8_t expect1 = vld1q_p16 (exp1);
+ poly16x8_t expect2 = vld1q_p16 (exp2);
+
+ for (i = 0; i < 8; i++)
+ if ((result.val[0][i] != expect1[i]) || (result.val[1][i] != expect2[i]))
+ abort ();
+
+ return 0;
+}