modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr43845.c (about)

     1  typedef int __attribute__ ((const)) (*x264_pixel_cmp_t)(void);
     2  
     3  typedef struct {
     4      x264_pixel_cmp_t ssd;
     5  } x264_pixel_function_t;
     6  
     7  int x264_pixel_ssd_wxh (x264_pixel_function_t *pf, int i_width) {
     8      int i_ssd = 0, x;
     9      for (x = 0; x < i_width; x++)
    10        i_ssd += pf->ssd();
    11      return i_ssd;
    12  }