PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512bw-kandnq-1.c
blobe8b7a5f9aa2166511b8e477a941c6c1a9471ca3a
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512bw -O2" } */
3 /* { dg-final { scan-assembler-times "kandnq\[ \\t\]+\[^\{\n\]*%k\[0-7\](?:\n|\[ \\t\]+#)" 1 } } */
5 #include <immintrin.h>
7 void
8 avx512bw_test ()
10 __mmask64 k1, k2, k3;
11 volatile __m512i x = _mm512_setzero_si512 ();
13 __asm__( "kmovq %1, %0" : "=k" (k1) : "r" (1) );
14 __asm__( "kmovq %1, %0" : "=k" (k2) : "r" (2) );
16 k3 = _kandn_mask64 (k1, k2);
17 x = _mm512_mask_add_epi8 (x, k3, x, x);