* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-set-v4di-3.c
blob95710d822402621a7977b12e04c450c7ed4c001a
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 static __m256i
8 __attribute__((noinline))
9 foo (long long x)
11 return _mm256_set_epi64x (x, x, x, x);
14 static void
15 avx_test (void)
17 long long e = 0xfed178ab134badf1LL;
18 long long v[4];
19 union256i_q u;
20 int i;
22 for (i = 0; i < ARRAY_SIZE (v); i++)
23 v[i] = e;
24 u.x = foo (e);
25 if (check_union256i_q (u, v))
26 abort ();