1/* { dg-do compile } */
2/* { dg-require-effective-target vect_int } */
3
4void SexiALI_Convert(void *vdest, void *vsrc, unsigned int frames)
5{
6 unsigned int x;
7 short *src = vsrc;
8 unsigned char *dest = vdest;
9 for(x=0;x<256;x++)
10 {
11  int tmp;
12  tmp = *src;
13  src++;
14  tmp += *src;
15  src++;
16  *dest++ = tmp;
17  *dest++ = tmp;
18 }
19}
20/* { dg-final { cleanup-tree-dump "vect" } } */
21
22