(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr90773-26.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -march=skylake -mtune-ctrl=avx256_move_by_pieces" } */
       3  
       4  struct S
       5  {
       6    long long s1 __attribute__ ((aligned (8)));
       7    unsigned s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14;
       8  };
       9  
      10  const struct S array[] = {
      11    { 0, 60, 640, 2112543726, 39682, 48, 16, 33, 10, 96, 2, 0, 0, 4 }
      12  };
      13  
      14  void
      15  foo (struct S *x)
      16  {
      17    x[0] = array[0];
      18  }
      19  
      20  /* { dg-final { scan-assembler-times "vmovdqu\[\\t \]%ymm\[0-9\]+, \\(%\[\^,\]+\\)" 1 } } */
      21  /* { dg-final { scan-assembler-times "vmovdqu\[\\t \]%ymm\[0-9\]+, 32\\(%\[\^,\]+\\)" 1 } } */