(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
pr97872.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target arm_neon_ok } */
       3  /* { dg-options "-O3" } */
       4  /* { dg-add-options arm_neon } */
       5  
       6  #include <arm_neon.h>
       7  
       8  uint8x8_t f1(int8x8_t a, int8x8_t b) {
       9    return a < b;
      10  }
      11  
      12  /* { dg-final { scan-assembler-not "vbsl" } } */