i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr37539.c
blobc7934eb384739778a841271841fd8b7777ee19be
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 __attribute__ ((noinline)) void
7 ayuv2yuyv_ref (int *d, int *src, int n)
9 char *dest = (char *)d;
10 int i;
12 for(i=0;i<n/2;i++){
13 dest[i*4 + 0] = (src[i*2 + 0])>>16;
14 dest[i*4 + 1] = (src[i*2 + 1])>>8;
15 dest[i*4 + 2] = (src[i*2 + 0])>>16;
16 dest[i*4 + 3] = (src[i*2 + 0])>>0;
19 /* Check results. */
20 #pragma GCC novector
21 for(i=0;i<n/2;i++){
22 if (dest[i*4 + 0] != (src[i*2 + 0])>>16
23 || dest[i*4 + 1] != (src[i*2 + 1])>>8
24 || dest[i*4 + 2] != (src[i*2 + 0])>>16
25 || dest[i*4 + 3] != (src[i*2 + 0])>>0)
26 abort();
30 int main ()
32 int d[256], src[128], i;
34 check_vect ();
36 for (i = 0; i < 128; i++)
37 src[i] = i;
39 ayuv2yuyv_ref(d, src, 128);
41 return 0;
44 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 2 "vect" { target { vect_strided4 && vect_strided2 } } } } */