arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr64493.c
blobd3faf84bcc16d31fc11dd2d0cd7242972fdbafdc
1 #include "tree-vect.h"
3 int a, b, c, d, e, f, g, h;
5 int
6 main ()
8 check_vect ();
10 for (; a; a--)
11 for (d = 1; d <= 0; d++)
12 #pragma GCC novector
13 for (; d;)
14 if (h)
16 if (!g) __builtin_abort ();
17 if (!0) __builtin_abort ();
20 for (f = 4; f; f--)
22 for (b = 0; b < 2; b++)
23 c |= 1;
24 e |= c;
27 return 0;