1 extern void abort (void);
2 
3 poly16x8_t
test_vrev64qp16(poly16x8_t _arg)4 test_vrev64qp16 (poly16x8_t _arg)
5 {
6   return vrev64q_p16 (_arg);
7 }
8 
9 int
main(int argc,char ** argv)10 main (int argc, char **argv)
11 {
12   int i;
13   poly16x8_t inorder = {1, 2, 3, 4, 5, 6, 7, 8};
14   poly16x8_t reversed = test_vrev64qp16 (inorder);
15   poly16x8_t expected = {4, 3, 2, 1, 8, 7, 6, 5};
16 
17   for (i = 0; i < 8; i++)
18     if (reversed[i] != expected[i])
19       abort ();
20   return 0;
21 }
22 
23