1/* { dg-do run } */
2/* { dg-require-effective-target avx } */
3/* { dg-options "-O2 -mavx" } */
4
5#include "avx-check.h"
6
7static __m256d
8__attribute__((noinline, unused))
9test (double *e)
10{
11  return _mm256_load_pd (e);
12}
13
14void static
15avx_test (void)
16{
17  union256d u;
18  double e [4] __attribute__ ((aligned (8)))  = {41124.234,2344.2354,8653.65635,856.43576};
19
20  u.x = test (e);
21
22  if (check_union256d (u, e))
23    abort ();
24}
25