Fortran: fix ALLOCATE with SOURCE of deferred character length [PR114019]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr101202.c
blobe76c908f4937affa4d6441abaf1296b821922795
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize" } */
4 int printf(const char *, ...);
5 unsigned a, b, d;
6 int c, e, f;
7 int main()
9 while (a)
10 if (b)
12 f = a;
13 while (e)
15 int h, i;
16 if (d)
18 h = a;
19 i = d;
21 d = a | d && c;
22 if (a)
24 printf("%d", a);
25 goto L;
28 a = h;
29 d = i;
32 return 0;