* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr43845.c
blobbdb45e7d2a8b6db667001f2b24ee3d25fefc7fe0
1 typedef int __attribute__ ((const)) (*x264_pixel_cmp_t)(void);
3 typedef struct {
4 x264_pixel_cmp_t ssd;
5 } x264_pixel_function_t;
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;