(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve2/
bitsel_3.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -ftree-vectorize -fdump-tree-vect-details --save-temps" } */
       3  
       4  #define OP(x,y,z) ((~(x) & (z)) | ((y) & ~(z)))
       5  
       6  #include "bitsel_1.c"
       7  
       8  /* { dg-final { scan-tree-dump-times "vectorized 1 loops in function" 4 "vect" } } */
       9  
      10  /* { dg-final { scan-assembler-not {\teor\tz[0-9]+\.[bhsd]} } } */
      11  /* { dg-final { scan-assembler-not {\tbic\tz[0-9]+\.[bhsd]} } } */
      12  
      13  /* { dg-final { scan-assembler-times {\tbsl1n\tz[0-9]+\.d, z[0-9]+\.d, z[0-9]+\.d, z[0-9]+\.d\n} 4 } } */