PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx2-vpslld-2.c
blob84c68feb550b3044a2228e654143c5cf68e0ae60
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx2 } */
3 /* { dg-options "-O2 -mavx2" } */
5 #include <string.h>
6 #include "avx2-check.h"
8 static void
9 compute_pslld256 (int *s1, long long int *s2, int *r)
11 int i;
12 long long int count = s2[0];
14 memset (r, 0, 32);
16 if (count < 32)
17 for (i = 0; i < 8; ++i)
18 r[i] = s1[i] << count;
22 void static
23 avx2_test (void)
25 union256i_d s1, res;
26 union128i_q s2;
27 int res_ref[8];
28 int i, j;
29 int fail = 0;
31 for (i = 0; i < 10; i++)
33 for (j = 0; j < 8; j++)
34 s1.a[j] = j * i;
36 s2.a[0] = i;
38 res.x = _mm256_sll_epi32 (s1.x, s2.x);
40 compute_pslld256 (s1.a, s2.a, res_ref);
42 fail += check_union256i_d (res, res_ref);
45 if (fail != 0)
46 abort ();