testsuite: Align testcase with implementation [PR105090]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr60382.c
blobe68229590a1386cf28d3bbc9d36b3baf333ed86c
1 #include "tree-vect.h"
3 int a, b, c, e, f;
5 void
6 foo ()
8 for (b = 0; b < 3; b++)
9 if (e)
11 for (c = 0; c < 4; c++)
13 if (b)
14 continue;
15 f = 1;
16 for (a = 0; a < 2; a++)
17 f |= 1;
19 for (;;)
24 int
25 main ()
27 check_vect ();
28 foo ();
29 return 0;