1 #include <arm_neon.h>
2 #include "arm-neon-ref.h"
3 #include "compute-ref-data.h"
4 
5 #define INSN_NAME vmlsl_lane
6 #define TEST_MSG "VMLSL_LANE"
7 
8 /* Expected results.  */
9 VECT_VAR_DECL(expected,int,32,4) [] = { 0xffffc1d9, 0xffffc1da,
10 					0xffffc1db, 0xffffc1dc };
11 VECT_VAR_DECL(expected,int,64,2) [] = { 0xffffffffffffc1d9,
12 					0xffffffffffffc1da };
13 VECT_VAR_DECL(expected,uint,32,4) [] = { 0xffffc1d9, 0xffffc1da,
14 					 0xffffc1db, 0xffffc1dc };
15 VECT_VAR_DECL(expected,uint,64,2) [] = { 0xffffffffffffc1d9,
16 					 0xffffffffffffc1da };
17 
18 #include "vmlXl_lane.inc"
19