aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-41.c
blob: 82ca746e1738540379de4566727095cd90435cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { 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" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */