aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vcvtps2dq-256-1.c
blob: 47ec12b8d0fd580139f515c2d23cfe7f88c58f3a (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 s1;
  union256i_d u;
  int e [8];

  s1.x = _mm256_set_ps (2.78, 77768.82, 23.67, 536.46, 4564.6575, 568.1263, 9889.2422, 7352.4563);
  u.x = _mm256_cvtps_epi32 (s1.x);

  for (i = 0; i < 8; i++)
    e[i] = (int)(s1.a[i] + 0.5);

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