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

_Bool f1(_Bool a, _Bool b)
{
  if (a)
    return b;
  return 0;
}


/* There should be no if statements and be fold into just return a & b. */
/* { dg-final { scan-tree-dump-not "if" "optimized" } } */
/* { dg-final { scan-tree-dump-times " & " 1 "optimized" } } */