2018-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr64495.c
blob5cbaeff8389dafd3444f90240a910e7d5e4f2431
1 #include <assert.h>
2 #include "tree-vect.h"
4 int a, b, c, d, e, f, g, i, j;
5 static int *h = &e;
7 int
8 main ()
10 check_vect ();
12 for (; a;)
13 for (; g; g++)
14 for (; f; f++)
15 if (j)
17 assert(b);
18 assert(0);
20 for (i = 24; i; i--)
22 for (c = 0; c < 6; c++)
23 d |= 1;
24 *h |= d;
27 if (e != 1)
28 __builtin_abort ();
30 return 0;