gcc/gcc/testsuite/gcc.dg/torture/pr80181.c

20 lines
156 B
C

/* { dg-do compile } */
int
nr (void)
{
}
void
it (int dl)
{
int vp = 0;
for (;;)
{
dl = vp ^ nr ();
dl ^= vp;
vp = 1;
}
}