* config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-set-v32hi-3.c
blob6ea9023658ea7fa96ff33e247490dc4c741bbc20
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx512f } */
3 /* { dg-options "-O2 -mavx512f" } */
5 #include "avx512f-check.h"
7 static __m512i
8 __attribute__((noinline))
9 foo (short x)
11 return _mm512_set_epi16 (x, x, x, x, x, x, x, x,
12 x, x, x, x, x, x, x, x,
13 x, x, x, x, x, x, x, x,
14 x, x, x, x, x, x, x, x);
17 static void
18 avx512f_test (void)
20 short e = -45;
21 short v[32];
22 union512i_w u;
23 int i;
25 for (i = 0; i < ARRAY_SIZE (v); i++)
26 v[i] = e;
27 u.x = foo (e);
28 if (check_union512i_w (u, v))
29 abort ();