2018-09-19 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr87349-2.c
blobe8160ac4daf314babe275b37ce0f38b0203095a9
1 /* { dg-do compile } */
3 void
4 h1 (int *fh, int pw)
6 *fh = 0;
7 if (*fh != 0)
8 for (;;)
10 fh = &pw;
12 if (pw == 0)
15 else
16 while (pw < 1)
18 if (pw == 0)
20 ut:
24 ++pw;
27 if (pw == *fh)
28 goto ut;
31 goto ut;