aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vbroadcastf128-256-1.c
blob: e0cddd1a94c3fd233efdf8215859e6543c21ca9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { 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;
  union128 s;
  float e [8];

  s.x = _mm_set_ps(24.43, 68.346, 43.35, 546.46);
  u.x = _mm256_broadcast_ps (&s.x);

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

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