aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx2-vbroadcastss_ps256-2.c
blob: 9f90e2e8527688102d34306dfdaa5e1d23bf79f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* { dg-do run } */
/* { dg-require-effective-target avx2 } */
/* { dg-options "-O2 -mavx2" } */

#include <string.h>
#include "avx2-check.h"

void static
avx2_test (void)
{
  union128 s1;
  union256 res;
  float res_ref[8];
  int i, j;
  int fail = 0;

  for (i = 0; i < 10; i++)
    {
      s1.a[0] = i * 3.14;

      res.x = _mm256_broadcastss_ps (s1.x);

      for (j = 0; j < 8; j++)
	memcpy (res_ref + j, s1.a, 4);

      fail += check_union256 (res, res_ref);
    }

  if (fail != 0)
    abort ();

}