blob: 4ce394982135730a27ec0047ce10fe2dc314e727 [file] [log] [blame]
/* { dg-do compile } */
void __attribute__ ((returns_twice))
gr (void);
void
ib (void);
void
zg (void);
void
yw (int uz)
{
gr ();
for (;;)
if (uz != 0)
{
uz = 0;
ib ();
}
else
zg ();
}