(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr104978.c
       1  /* PR target/104978 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -mavx512fp16" } */
       4  /* { dg-final { scan-assembler-times "vmovss\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+\[^\n\r]*%xmm\[0-9\]+\[^\n\r]*%xmm\[0-9\]+\{%k\[0-9\]\}+(?:\n|\[ \\t\]+#)" 2 } } */
       5  
       6  #include<immintrin.h>
       7  
       8  __m128h
       9  foo (__m128h a, __m128h b, __m128h c, __mmask8 m)
      10  { 
      11    return _mm_mask_fmadd_round_sch (a, m, b, c, 8);
      12  }
      13  
      14  __m128h
      15  foo2 (__m128h a, __m128h b, __m128h c, __mmask8 m)
      16  { 
      17    return _mm_mask_fcmadd_round_sch (a, m, b, c, 8);
      18  }