(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr95483-5.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-mavx512bw -mavx512vl -O2" } */
       3  /* { dg-final { scan-assembler-times "(?:vmovdqu8|vinserti128)\[ \\t\]+\[^\{\n\]*\\)\[^\n\]*%ymm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
       4  /* { dg-final { scan-assembler-times "(?:vmovdqu8|vextracti128)\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\[^\n\]*\\)(?:\n|\[ \\t\]+#)" 1 } } */
       5  
       6  #include <immintrin.h>
       7  
       8  char *p, *p1;
       9  volatile __m256i yyy;
      10  
      11  void extern
      12  avx512bw_test (void)
      13  {
      14    yyy = _mm256_loadu_epi8 (p);
      15    _mm256_storeu_epi8 (p1, yyy);
      16  }