aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vmovddup-256-1.c
blob: a971dbf4f129b22d97b8a15925ff0d59b40b92b1 (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;
  union256d u, s1;
  double e [4];

  s1.x = _mm256_set_pd (39578.467285, 7856.342941, 85632.783567, 47563.234215);
  u.x = _mm256_movedup_pd (s1.x);

  for (i = 0; i < 2; i++)
    e[2*i] = e[2*i+1] = s1.a[2*i];

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