aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-16.c
blob: e7a271150f8ec8374fa14ff760bde6940923f465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

int foo (int a)
{
  int c = 0;
  if (a != 0)
    c = __builtin_popcount (a);
  return c;
}

/* { dg-final { scan-tree-dump-not "if" "optimized" } } */