2015-05-19 Christophe Lyon <christophe.lyon@linaro.org>
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vmlal.c
blobc147f31c6ef7be4fae121c990d954e84d6dc59b5
1 #include <arm_neon.h>
2 #include "arm-neon-ref.h"
3 #include "compute-ref-data.h"
5 #define INSN_NAME vmlal
6 #define TEST_MSG "VMLAL"
8 /* Expected results. */
9 VECT_VAR_DECL(expected,int,16,8) [] = { 0xe907, 0xe908, 0xe909, 0xe90a,
10 0xe90b, 0xe90c, 0xe90d, 0xe90e };
11 VECT_VAR_DECL(expected,int,32,4) [] = { 0x3e07, 0x3e08, 0x3e09, 0x3e0a };
12 VECT_VAR_DECL(expected,int,64,2) [] = { 0x3e07, 0x3e08 };
13 VECT_VAR_DECL(expected,uint,16,8) [] = { 0x3e07, 0x3e08, 0x3e09, 0x3e0a,
14 0x3e0b, 0x3e0c, 0x3e0d, 0x3e0e };
15 VECT_VAR_DECL(expected,uint,32,4) [] = { 0x3e07, 0x3e08, 0x3e09, 0x3e0a };
16 VECT_VAR_DECL(expected,uint,64,2) [] = { 0x3e07, 0x3e08 };
18 #include "vmlXl.inc"