blob: 7bb7cee5a3251951ca6ba7425eb4559926df4973 [file] [log] [blame]
/* From PR 19484. */
/* { dg-require-effective-target indirect_calls } */
extern void foo (void) __attribute__((noreturn));
int n;
void
g (void)
{
void (*f) (void) = foo;
if (n)
f ();
n = 1;
}