aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vbroadcastf128-256-2.c
blob: eb4ec579b40a4807fcb1814f9da84a7351c9913e (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)
{
  union256d u;
  union128d s;
  double e [4];

  s.x = _mm_set_pd(24.43, 68.346);
  u.x = _mm256_broadcast_pd (&s.x);

  e[0] = e[2] = s.a[0];
  e[1] = e[3] = s.a[1];

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