1 extern void abort (void);
2
3 uint16x4x2_t
test_vzipu16(uint16x4_t _a,uint16x4_t _b)4 test_vzipu16 (uint16x4_t _a, uint16x4_t _b)
5 {
6 return vzip_u16 (_a, _b);
7 }
8
9 int
main(int argc,char ** argv)10 main (int argc, char **argv)
11 {
12 int i;
13 uint16_t first[] = {1, 2, 3, 4};
14 uint16_t second[] = {5, 6, 7, 8};
15 uint16x4x2_t result = test_vzipu16 (vld1_u16 (first), vld1_u16 (second));
16 uint16x4_t res1 = result.val[0], res2 = result.val[1];
17 uint16_t exp1[] = {1, 5, 2, 6};
18 uint16_t exp2[] = {3, 7, 4, 8};
19 uint16x4_t expected1 = vld1_u16 (exp1);
20 uint16x4_t expected2 = vld1_u16 (exp2);
21
22 for (i = 0; i < 4; i++)
23 if ((res1[i] != expected1[i]) || (res2[i] != expected2[i]))
24 abort ();
25
26 return 0;
27 }
28