SVE Intrinsics: Change return type of redirect_call to gcall.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr37482.c
blobe52266d8a941a3f0061c1ae3ba4408b29e65a604
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 void SexiALI_Convert(void *vdest, void *vsrc, unsigned int frames)
6 unsigned int x;
7 short *src = vsrc;
8 unsigned char *dest = vdest;
9 for(x=0;x<256;x++)
11 int tmp;
12 tmp = *src;
13 src++;
14 tmp += *src;
15 src++;
16 *dest++ = tmp;
17 *dest++ = tmp;