1/* { dg-do run } */
2/* { dg-options "-O2 -mavx512f" } */
3/* { dg-require-effective-target avx512f } */
4
5#include "avx512f-check.h"
6
7static unsigned int
8__attribute__((noinline, unused))
9test (union128 s1)
10{
11  return _mm_cvttss_u32 (s1.x);
12}
13
14void static
15avx512f_test (void)
16{
17  union128 s1;
18  unsigned int d;
19  unsigned int e;
20
21  s1.x = _mm_set_ps (24.43, 68.346, 45.12, 90.97);
22  d =  test (s1);
23  e = (unsigned int)s1.a[0];
24
25  if (e != d)
26    abort ();
27}
28