aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx2-vbroadcastsd_pd-2.c
blob: ee323f5af379cdee7602d2b2a1cfcd1924642efe (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)
{
  union128d s1;
  union256d res;
  double res_ref[4];
  int i, j;
  int fail = 0;

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

      res.x = _mm256_broadcastsd_pd (s1.x);

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

      fail += check_union256d (res, res_ref);
    }

  if (fail != 0)
    abort ();

}