rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20050122-1.c

13 lines
152 B
C

/* From PR 19484. */
extern void foo (void) __attribute__((noreturn));
int n;
void
g (void)
{
void (*f) (void) = foo;
if (n)
f ();
n = 1;
}