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