view gcc/testsuite/gcc.dg/analyzer/data-model-17.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

typedef struct foo {} foo_t;

typedef void (*func_t)(foo_t *s);

void cb_1 (foo_t *s);
void cb_2 (foo_t *s);

typedef struct config_s {
  func_t func;
} config;

static const config table[2] = {
  { cb_1 },
  { cb_2 }
};

int deflate (foo_t *s, int which)
{
  (*(table[which].func))(s);
}