aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vbroadcastsd-1.c
blob: 329405f31284bac34d8a993e4cc46776de55b576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do run } */
/* { dg-require-effective-target avx } */
/* { dg-options "-O2 -mavx" } */

#include "avx-check.h"

void static
avx_test (void)
{
  int i;
  double s = 39678;
  union256d u;
  double e [4];

  u.x = _mm256_broadcast_sd (&s);

  for (i = 0; i < 4; i++)
    e[i] = s;

  if (check_union256d (u, e))
    abort ();
}