diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2016-05-18 12:52:51 +0000 |
---|---|---|
committer | Christophe Lyon <clyon@gcc.gnu.org> | 2016-05-18 14:52:51 +0200 |
commit | bd79378db5fd1b50f226415c860665f86957a131 (patch) | |
tree | 6608ccec86a8e9363dfebe72c31dc9a34aacff41 /gcc | |
parent | 81ca3ea0f259d303138faabc457c4d204b6eb646 (diff) | |
download | gcc-bd79378db5fd1b50f226415c860665f86957a131.zip gcc-bd79378db5fd1b50f226415c860665f86957a131.tar.gz gcc-bd79378db5fd1b50f226415c860665f86957a131.tar.bz2 |
vsli_n.c: Add checks for vsliq_n_s64 and vsliq_n_u64.
* gcc.target/aarch64/advsimd-intrinsics/vsli_n.c: Add checks for vsliq_n_s64 and vsliq_n_u64.
From-SVN: r236385
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vsli_n.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 38394cb..77baf87 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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. diff --git a/gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vsli_n.c b/gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vsli_n.c index 0285083..91115e5 100644 --- a/gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vsli_n.c +++ b/gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vsli_n.c @@ -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); } |