(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
bfin/
popcount.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  int foo(int x)
       5  {
       6    return __builtin_popcount(x);
       7  }
       8  
       9  /* { dg-final { scan-assembler "ONES" } } */