arm: fix typo in dg-require-effective-target [PR118089]
[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;