aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/avx-vcvtpd2ps-256-1.c
blob: 987f2b263f9c6d22aeb0900d46dbea53b505561b (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;
  union256d s1;
  union128 u;
  float e [4];

  s1.x = _mm256_set_pd (2.43, 68.46, 23.35, 536.46);
  u.x = _mm256_cvtpd_ps (s1.x);

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

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