1/* { dg-do run } */
2/* { dg-require-effective-target avx } */
3/* { dg-options "-O2 -mavx" } */
4
5#include "avx-check.h"
6
7static void
8__attribute__((noinline, unused))
9test (float *e, __m256 a)
10{
11  return _mm256_store_ps (e, a);
12}
13
14void static
15avx_test (void)
16{
17  union256 u;
18  float e [8] __attribute__ ((aligned (32))) = {0.0};
19
20  u.x = _mm256_set_ps (1.17, 24567.16, 3.15, 4567.14, 5.13, 65467.12, 788.11, 8.9);
21
22  test (e, u.x);
23
24  if (check_union256 (u, e))
25    abort ();
26}
27