aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr123038.c
blob: bca831f9c085b3ef82283367c2d93bc10a42dd24 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */

unsigned char f(int b)
{
  for (int a = 0; a < 10; a += 1)
    b = __builtin_ffs(b);
  return b;
}