[ARM,AArch64][testsuite] AdvSIMD intrinsics tests cleanup: remove useless expected...
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vcle.c
bloba59b54328010c27431bc0c5fc2c86adcf230ba71
1 #define INSN_NAME vcle
2 #define TEST_MSG "VCLE/VCLEQ"
4 #include "cmp_op.inc"
6 /* Expected results. */
7 VECT_VAR_DECL(expected,uint,8,8) [] = { 0xff, 0xff, 0xff, 0xff,
8 0xff, 0xff, 0xff, 0x0 };
9 VECT_VAR_DECL(expected,uint,16,4) [] = { 0xffff, 0xffff, 0xffff, 0x0 };
10 VECT_VAR_DECL(expected,uint,32,2) [] = { 0xffffffff, 0x0 };
11 VECT_VAR_DECL(expected,uint,8,16) [] = { 0xff, 0xff, 0xff, 0xff,
12 0xff, 0xff, 0xff, 0xff,
13 0xff, 0xff, 0xff, 0xff,
14 0xff, 0x0, 0x0, 0x0 };
15 VECT_VAR_DECL(expected,uint,16,8) [] = { 0xffff, 0xffff, 0xffff, 0xffff,
16 0xffff, 0xffff, 0xffff, 0x0 };
17 VECT_VAR_DECL(expected,uint,32,4) [] = { 0xffffffff, 0xffffffff,
18 0xffffffff, 0x0 };
20 VECT_VAR_DECL(expected_uint,uint,8,8) [] = { 0xff, 0xff, 0xff, 0xff,
21 0x0, 0x0, 0x0, 0x0 };
22 VECT_VAR_DECL(expected_uint,uint,16,4) [] = { 0xffff, 0xffff, 0xffff, 0x0 };
23 VECT_VAR_DECL(expected_uint,uint,32,2) [] = { 0xffffffff, 0xffffffff };
25 VECT_VAR_DECL(expected_q_uint,uint,8,16) [] = { 0xff, 0xff, 0xff, 0xff,
26 0xff, 0x0, 0x0, 0x0,
27 0x0, 0x0, 0x0, 0x0,
28 0x0, 0x0, 0x0, 0x0 };
29 VECT_VAR_DECL(expected_q_uint,uint,16,8) [] = { 0xffff, 0xffff, 0xffff, 0xffff,
30 0xffff, 0xffff, 0xffff, 0x0 };
31 VECT_VAR_DECL(expected_q_uint,uint,32,4) [] = { 0xffffffff, 0xffffffff,
32 0xffffffff, 0x0 };
34 VECT_VAR_DECL(expected_float,uint,32,2) [] = { 0xffffffff, 0xffffffff };
35 VECT_VAR_DECL(expected_q_float,uint,32,4) [] = { 0xffffffff, 0xffffffff,
36 0xffffffff, 0x0 };
38 VECT_VAR_DECL(expected_uint2,uint,32,2) [] = { 0xffffffff, 0x0 };
39 VECT_VAR_DECL(expected_uint3,uint,32,2) [] = { 0xffffffff, 0xffffffff };
40 VECT_VAR_DECL(expected_uint4,uint,32,2) [] = { 0xffffffff, 0x0 };
42 VECT_VAR_DECL(expected_nan,uint,32,2) [] = { 0x0, 0x0 };
43 VECT_VAR_DECL(expected_mnan,uint,32,2) [] = { 0x0, 0x0 };
44 VECT_VAR_DECL(expected_nan2,uint,32,2) [] = { 0x0, 0x0 };
46 VECT_VAR_DECL(expected_inf,uint,32,2) [] = { 0xffffffff, 0xffffffff };
47 VECT_VAR_DECL(expected_minf,uint,32,2) [] = { 0x0, 0x0 };
48 VECT_VAR_DECL(expected_inf2,uint,32,2) [] = { 0x0, 0x0 };
50 VECT_VAR_DECL(expected_mzero,uint,32,2) [] = { 0xffffffff, 0xffffffff };