blob: ae38a329bd4d868a762300d3218d68864c0fc4be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* { dg-do run } */
/* { dg-require-effective-target popcountl } */
/* { dg-options "-O2 -fno-tree-ch -fdump-tree-optimized" } */
int
__attribute__ ((noinline, noclone))
foo (long b)
{
int c = 0;
while (b) {
b &= b - 1;
c++;
}
return c;
}
int main()
{
if (foo (7) != 3)
__builtin_abort ();
if (foo (0) != 0)
__builtin_abort ();
if (foo (0xff) != 8)
__builtin_abort ();
return 0;
}
/* { dg-final { scan-tree-dump-times "__builtin_popcount|\\.POPCOUNT" 1 "optimized" } } */
|