1 /* { dg-do run } */
2 /* { dg-options "-mavx512dq -O0" } */
3 /* { dg-require-effective-target avx512dq } */
4 
5 #include "avx512f-check.h"
6 
7 static void
avx512f_test(void)8 avx512f_test (void)
9 {
10   __m512 x = {
11       1, 1, 1, 1,
12       1, 1, 1, 1,
13       0, 0, 0, 0,
14       0, 0, 0, 0,  };
15   int ret = _mm512_fpclass_ps_mask(x, 0x26);
16   if (ret != 65280)
17     __builtin_abort();
18 }
19