Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr103744-1.c
blob1bc81e26fe4abde4e3735fb6aa30120692017d17
1 /* { dg-do compile } */
3 int r;
5 void
6 foo (short int *s, short int *d1, short int *d2, int z)
8 int *a;
10 while (z < 1)
12 int i;
14 i = *s++ - (*d1++ + *d2++);
15 r += a[i];
16 i = *s++ - (*d1++ + *d2++);
17 r += a[i];
18 ++z;