blob: a70907d905146adf2d333d7d7127ba2fd6f89318 [file] [log] [blame]
/* From PR 19484. */
extern void foo (void) __attribute__((noreturn));
int n;
void
g (void)
{
void (*f) (void) = foo;
if (n)
f ();
n = 1;
}