aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx2-vbroadcastss_ps-2.c
blob: 1637e703bc77f04fc4ef0666db929972a1f83b7a (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
/* { 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, res;
  float res_ref[4];
  int i, j;
  int fail = 0;

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

      res.x = _mm_broadcastss_ps (s1.x);

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

      fail += check_union128 (res, res_ref);
    }

  if (fail != 0)
    abort ();

}