1 #define INSN_NAME vcalt 2 #define TEST_MSG "VCALT/VCALTQ" 3 4 #include "cmp_fp_op.inc" 5 6 /* Expected results. */ 7 VECT_VAR_DECL(expected,uint,32,2) [] = { 0x0, 0xffffffff }; 8 VECT_VAR_DECL(expected,uint,32,4) [] = { 0x0, 0x0, 0x0, 0xffffffff }; 9 10 VECT_VAR_DECL(expected2,uint,32,2) [] = { 0x0, 0x0 }; 11 VECT_VAR_DECL(expected2,uint,32,4) [] = { 0x0, 0x0, 0x0, 0x0 }; 12 13 #if defined (__ARM_FEATURE_FP16_VECTOR_ARITHMETIC) 14 VECT_VAR_DECL (expected, uint, 16, 4) [] = { 0x0, 0xffff, 0xffff, 0xffff }; 15 VECT_VAR_DECL (expected, uint, 16, 8) [] = { 0x0, 0x0, 0x0, 0xffff, 16 0xffff, 0xffff, 0xffff, 0xffff }; 17 18 VECT_VAR_DECL (expected2, uint, 16, 4) [] = { 0x0, 0x0, 0x0, 0x0 }; 19 VECT_VAR_DECL (expected2, uint, 16, 8) [] = { 0x0, 0x0, 0x0, 0x0, 20 0x0, 0x0, 0x0, 0xffff }; 21 #endif 22