blob: 5442a610fa2deb5d5b74255a6c73798c141516e5 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mcpu=niagara2" } */
int test_popcount(int a)
{
return __builtin_popcount(a);
}
long test_popcountl(long a)
{
return __builtin_popcountl(a);
}
long long test_popcountll(long long a)
{
return __builtin_popcountll(a);
}
/* { dg-final { scan-assembler-times "popc\t%" 3 } } */