blob: 7bb7cee5a3251951ca6ba7425eb4559926df4973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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;
}
|