1 /* { dg-do compile } */
2 /* { dg-options "-mavx512dq -mavx512vl -O2" } */
3 /* { dg-final { scan-assembler-times "vinserti64x2\[^\n\]*ymm\[0-9\]+(?:\n|\[ \\t\]+#)"  1 } } */
4 /* { dg-final { scan-assembler-times "vinserti64x2\[^\n\]*ymm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)"  1 } } */
5 /* { dg-final { scan-assembler-times "vinserti64x2\[^\n\]*ymm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)"  1 } } */
6 /* { dg-final { scan-assembler-times "vinserti64x2\[^\n\]*zmm\[0-9\]+(?:\n|\[ \\t\]+#)"  1 } } */
7 /* { dg-final { scan-assembler-times "vinserti64x2\[^\n\]*zmm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)"  1 } } */
8 /* { dg-final { scan-assembler-times "vinserti64x2\[^\n\]*zmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)"  1 } } */
9 
10 #include <immintrin.h>
11 
12 volatile __m512i z;
13 volatile __m256i x;
14 volatile __m128i y;
15 
16 void extern
avx512dq_test(void)17 avx512dq_test (void)
18 {
19   x = _mm256_inserti64x2 (x, y, 1);
20   x = _mm256_mask_inserti64x2 (x, 2, x, y, 1);
21   x = _mm256_maskz_inserti64x2 (2, x, y, 1);
22   z = _mm512_inserti64x2 (z, y, 0);
23   z = _mm512_mask_inserti64x2 (z, 2, z, y, 0);
24   z = _mm512_maskz_inserti64x2 (2, z, y, 0);
25 }
26