1/* { dg-do run } */
2/* { dg-require-effective-target avx } */
3/* { dg-options "-O2 -mavx" } */
4
5#include "avx-check.h"
6
7static __m256
8__attribute__((noinline, unused))
9test (float *e)
10{
11  return _mm256_loadu_ps (e);
12}
13
14void static
15avx_test (void)
16{
17  union256 u;
18  float e [8]  = {24.43, 68.346, 43.35, 546.46, 46.79, 82.78, 82.7, 9.4};
19
20  u.x = test (e);
21
22  if (check_union256 (u, e))
23    abort ();
24}
25