modula2: M2MetaError.{def,mod} and P2SymBuild.mod further cleanup
[official-gcc.git] / gcc / testsuite / gcc.dg / pr107570.c
blobba5b535a867201b979270257078232e2b103b270
1 /* { dg-do compile } */
2 /* { dg-options "-Os" } */
4 long int n;
6 void
7 foo (int *p, int x)
9 for (;;)
11 for (*p = 0; *p < 1; ++*p)
13 n += *p < 0;
14 if (n < x)
16 while (x < 1)
17 ++x;
19 __builtin_unreachable ();
23 p = &x;