(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr90773-20.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -march=skylake -mtune-ctrl=avx256_store_by_pieces" } */
       3  
       4  extern char *dst;
       5  
       6  void
       7  foo (int c)
       8  {
       9    __builtin_memset (dst, c, 33);
      10  }
      11  
      12  /* { dg-final { scan-assembler-times "vmovdqu\[\\t \]%ymm\[0-9\]+, \\(%\[\^,\]+\\)" 1 } } */
      13  /* { dg-final { scan-assembler-times "movb\[\\t \]+.+, 32\\(%\[\^,\]+\\)" 1 } } */