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