]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/aarch64/sve2/acle/asm/movlt_s64.c
[AArch64] Add support for the SVE2 ACLE
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / aarch64 / sve2 / acle / asm / movlt_s64.c
1 /* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" } } */
2
3 #include "test_sve_acle.h"
4
5 /*
6 ** movlt_s64_tied1:
7 ** sshllt z0\.d, z0\.s, #0
8 ** ret
9 */
10 TEST_TYPE_CHANGE_Z (movlt_s64_tied1, svint64_t, svint32_t,
11 z0_res = svmovlt_s64 (z0),
12 z0_res = svmovlt (z0))
13
14 /*
15 ** movlt_s64_untied:
16 ** sshllt z0\.d, z1\.s, #0
17 ** ret
18 */
19 TEST_TYPE_CHANGE_Z (movlt_s64_untied, svint64_t, svint32_t,
20 z0_res = svmovlt_s64 (z1),
21 z0_res = svmovlt (z1))