Stop only if there aren't any usable algorithms
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vpcmpleuq-1.c
blobbfe3e4cfb2da577c7a031acfd186881e5d4f3b3a
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512f -O2" } */
3 /* { dg-final { scan-assembler-times "vpcmpuq\[ \\t\]+\[^\n\]*%zmm\[0-9\]\[^\n^k\]*%k\[0-9\]\[^\{\]" 1 } } */
4 /* { dg-final { scan-assembler-times "vpcmpuq\[ \\t\]+\[^\n\]*%zmm\[0-9\]\[^\n^k\]*%k\[0-9\]\{" 1 } } */
6 #include <immintrin.h>
8 volatile __m512i x;
9 volatile __mmask8 m;
11 void extern
12 avx512f_test (void)
14 m = _mm512_cmple_epu64_mask (x, x);
15 m = _mm512_mask_cmple_epu64_mask (m, x, x);