summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-41.c
blob: e3e392aea66c4f3469477501e120044133f8c740 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1" } */

int x;
int foo (void)
{
  x = 1;
  return __builtin_ffs (x);
}

/* { dg-final { scan-tree-dump-not "ffs" "fre1" } } */