view gcc/testsuite/gcc.dg/tree-ssa/phi-opt-18.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

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

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