aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/popcount-1.c
blob: 350ae51dc59070cfa8b68ec7c9cfe5170540ca0b (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target { ilp32 } } } */
/* { dg-skip-if "" { powerpc*-*-darwin* } } */
/* { dg-options "-O2 -mdejagnu-cpu=power5" } */
/* { dg-final { scan-assembler "popcntb" } } */
/* { dg-final { scan-assembler-not "mullw" } } */

int foo(int x)
{
  return __builtin_popcount(x);
}