blob: 06f7b7b15ae7b138ea126be8ef10701f03814948 [file] [log] [blame]
/* { dg-do compile } */
int n;
void
bar (int, int);
__attribute__ ((noinline, returns_twice)) int
zero (void)
{
return 0;
}
void
foo (void)
{
(void) zero ();
n = 0;
for (;;)
bar (zero (), n);
}