view gcc/testsuite/gcc.dg/tree-ssa/popcount2.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* { 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" 1 "optimized" } } */