1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
4 
5 #include "avx-check.h"
6 
7 static __m256i
8 __attribute__((noinline))
foo(int x)9 foo (int x)
10 {
11   return _mm256_set_epi32 (x, x, x, x, x, x, x, x);
12 }
13 
14 static void
avx_test(void)15 avx_test (void)
16 {
17   int e = 0xabadbeef;
18   int v[8];
19   union256i_d u;
20   int i;
21 
22   for (i = 0; i < ARRAY_SIZE (v); i++)
23     v[i] = e;
24   u.x = foo (e);
25   if (check_union256i_d (u, v))
26     abort ();
27 }
28