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