aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vmovsldup-256-1.c
blob: 52127bec221c184b5411dccb97c4bd18b14158ca (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_moveldup_ps (s1.x);

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

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