OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2010-04-22 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr43845.c
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
}