aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr21840.c
blob: f6f2a5dc13339176e564fbcac255602ff2abaf0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-require-effective-target indirect_calls } */

void fn_show_state(void);
typedef void (*fn_handler_fn)(void);
static fn_handler_fn fn_handler[1];

void k_spec(unsigned char value)
{
  void *func = fn_handler[value];
  if (func == fn_show_state )
    return;
  fn_handler[value]();
}