(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
cbz.c
       1  /* { dg-do compile {target { arm_thumb2 || arm_thumb1_cbz_ok } } } */
       2  /* { dg-options "-O2" } */
       3  
       4  int
       5  foo (int a, int *b)
       6  {
       7    if (a)
       8      *b = 1;
       9    return 0;
      10  }
      11  
      12  /* { dg-final { scan-assembler-times "cbz\\tr\\d" 1 } } */