aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-vcvttsd2usi64-2.c
blob: 4aa45ef8264503568e4fab92a1f8ef69a9049d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do run { target { ! { ia32 } } } } */
/* { dg-options "-O2 -mavx512f" } */
/* { dg-require-effective-target avx512f } */

#include "avx512f-check.h"

static unsigned long long
__attribute__((noinline, unused))
test (union128d s1)
{
  return _mm_cvttsd_u64 (s1.x);
}

void static
avx512f_test (void)
{
  union128d s1;
  unsigned long long d;
  unsigned long long e;

  s1.x = _mm_set_pd (24.43, 68.346);
  d =  test (s1);
  e = (unsigned long long)s1.a[0];

  if (e != d)
    abort ();
}