aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vmovshdup-256-1.c
blob: a4b57a0c40dcf3782deb38f6feb369104e73a4a6 (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;
  union256 u, s1;
  float e[8];

  s1.x = _mm256_set_ps (134.3, 1234.54, 45.335, 646.456, 43.54, 473.34, 78, 89.54);
  u.x = _mm256_movehdup_ps (s1.x);

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

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