* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-set-v8di-1.c
blob8cb1f8f61b2c79dc64c9372d00594f22b5b6da57
1 /* { dg-do run } */
2 /* { dg-options "-O2 -mavx512f" } */
3 /* { dg-require-effective-target avx512f } */
5 #include "avx512f-check.h"
7 static __m512i
8 __attribute__ ((noinline))
9 foo (long long *v)
11 return _mm512_set_epi64 (v[7], v[6], v[5], v[4], v[3], v[2], v[1], v[0]);
14 static __m512i
15 __attribute__ ((noinline))
16 foo_r (long long *v)
18 return _mm512_setr_epi64 (v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7]);
21 static void
22 avx512f_test (void)
24 long long v[8] = { 0x12e9e94645ad8LL, 0x851c0b39446LL, 2134, 6678,
25 0x786784645245LL, 0x9487731234LL, 41124, 86530 };
26 union512i_q res;
28 res.x = foo (v);
30 if (check_union512i_q (res, v))
31 abort ();
33 res.x = _mm512_setzero_si512 ();
35 res.x = foo_r (v);
37 if (check_union512i_q (res, v))
38 abort ();