1/* { dg-do run } */
2/* { dg-require-effective-target avx } */
3/* { dg-options "-O2 -mavx" } */
4
5#include "avx-check.h"
6
7void static
8avx_test (void)
9{
10  union256 u, s1;
11  float e[8] = {0x1.7edeccp+10, 0x1.e3fa46p+8, 0x1.dabbcep+7, 0x1.d93e0cp+9,\
12                0x1.d3881cp+7, 0x1.54abbp+4, 0x1.19195cp+5, 0x1.719742p+5};
13
14  s1.x = _mm256_set_ps (2134.3343,1234.635654,453.345635,54646.464356, \
15                        895833.346347,56343,234234.34563,2345434.67832);
16  u.x = _mm256_sqrt_ps (s1.x);
17
18  if (check_union256 (u, e))
19    abort ();
20}
21