Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr68806.c
blobdbb743b80338e51f776e843d00401e6f14397557
1 /* { dg-do compile } */
3 int sad(const unsigned char *p1, long p2)
5 int a = 0;
6 for (int y = 0; y < 16; y++)
8 for (int x = 0; x < 12; x++)
9 a += p1[x];
10 p1 += p2;
12 return a;