(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr79568-1.c
       1  /* PR target/79568 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-mno-avx512vl -mavx512bw -O2" } */
       4  
       5  #pragma GCC push_options
       6  #pragma GCC target ("avx512vl,avx512bw")
       7  void
       8  foo (char *x, char __attribute__ ((__vector_size__(32))) *y, int z)
       9  {
      10    __builtin_ia32_storedquqi256_mask (x, *y, z);
      11  }
      12  #pragma GCC pop_options
      13  
      14  void
      15  bar (char *x, char __attribute__ ((__vector_size__(32))) *y, int z)
      16  {
      17    __builtin_ia32_storedquqi256_mask (x, *y, z); /* { dg-error "needs isa option" } */
      18  }