Imported Upstream version 4.7.3
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / vect / pr43430-2.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3 typedef unsigned char uint8_t;
4 vsad16_c (void *c, uint8_t * s1, uint8_t * s2, int stride, int h)
5 {
6   int score = 0;
7   int x, y;
8   for (x = 0; x < 16; x++)
9     score += ((s1[x] - s1[x + stride] + s2[x + stride]) >= 0 ?
10               s1[x] + s2[x + stride] :
11               s2[x + stride]);
12   return score;
13 }
14
15 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_condition } } } */
16 /* { dg-final { cleanup-tree-dump "vect" } } */