aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/popcount-2.c
blob: 7546a3bdf1e08d52b8249e0825c7441005819809 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile { target { ilp32 } } } */
/* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
/* { dg-options "-O2 -mcpu=power7 -m32" } */
/* { dg-final { scan-assembler "popcntw" } } */

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