(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr104977.c
       1  /* PR target/104977 */
       2  /* { dg-do assemble } */
       3  /* { dg-options "-O2 -mavx512fp16 -masm=intel" } */
       4  /* { dg-require-effective-target avx512fp16 } */
       5  /* { dg-require-effective-target masm_intel } */
       6  
       7  #include<immintrin.h>
       8  
       9  __m128h
      10  foo (__m128h a, __m128h b, __m128h c, __mmask8 m)
      11  {
      12    return _mm_fcmadd_round_sch (a, b, c, 8);
      13  }