blob: 58ed54eceb3260f9760446fffddbf7feb338e4c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* From PR 19578. */
/* { dg-require-effective-target indirect_calls } */
extern void foo (void) __attribute__((noreturn));
void
g (void)
{
void (*f) (void) = foo;
f ();
f ();
}
|