vsli_n.c: Add checks for vsliq_n_s64 and vsliq_n_u64.
authorChristophe Lyon <christophe.lyon@linaro.org>
Wed, 18 May 2016 12:52:51 +0000 (12:52 +0000)
committerChristophe Lyon <clyon@gcc.gnu.org>
Wed, 18 May 2016 12:52:51 +0000 (14:52 +0200)
* gcc.target/aarch64/advsimd-intrinsics/vsli_n.c: Add checks for vsliq_n_s64 and vsliq_n_u64.

From-SVN: r236385

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vsli_n.c

index 38394cb..77baf87 100644 (file)
@@ -1,5 +1,10 @@
 2016-05-18  Christophe Lyon  <christophe.lyon@linaro.org>
 
+       * gcc.target/aarch64/advsimd-intrinsics/vsli_n.c: Add checks for
+       vsliq_n_s64 and vsliq_n_u64.
+
+2016-05-18  Christophe Lyon  <christophe.lyon@linaro.org>
+
        * gcc.target/aarch64/advsimd-intrinsics/arm-neon-ref.h (CHECK,
        CHECK_FP, CHECK_CUMULATIVE_SAT): Print which type was checked.
 
index 0285083..91115e5 100644 (file)
@@ -166,9 +166,11 @@ void vsli_extra(void)
   CHECK(TEST_MSG, int, 8, 16, PRIx8, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, int, 16, 8, PRIx16, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, int, 32, 4, PRIx32, expected_max_shift, COMMENT);
+  CHECK(TEST_MSG, int, 64, 2, PRIx64, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, uint, 8, 16, PRIx8, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, uint, 16, 8, PRIx16, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, uint, 32, 4, PRIx32, expected_max_shift, COMMENT);
+  CHECK(TEST_MSG, uint, 64, 2, PRIx64, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, poly, 8, 16, PRIx8, expected_max_shift, COMMENT);
   CHECK(TEST_MSG, poly, 16, 8, PRIx16, expected_max_shift, COMMENT);
 }