(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve/
acle/
general/
pfirst_1.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  #include <arm_sve.h>
       5  
       6  void
       7  test1 (svbool_t pg, int *last, svbool_t *ptr)
       8  {
       9    svbool_t res = svpfirst (pg, svpfalse ());
      10    *last = svptest_last (pg, res);
      11    *ptr = res;
      12  }
      13  
      14  int
      15  test2 (svbool_t pg)
      16  {
      17    svbool_t res = svpfirst (pg, svpfalse ());
      18    return svptest_last (pg, res);
      19  }
      20  
      21  /* { dg-final { scan-assembler-times {\tpfirst\t} 2 } } */
      22  /* { dg-final { scan-assembler-not {\tptest\t} } } */