blob: 006e8e830521a958fd8d8bc253fa5b71db69d25a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized --param logical-op-non-short-circuit=0" } */
_Bool f1(_Bool a, _Bool b)
{
if (a)
{
if (b)
return 1;
else
return 0;
}
return 0;
}
/* There should be no if statements and be fold into just return a & b.
This can be done without ifcombine but in phiopt where a ? b : 0 is
converted into a & b. */
/* { dg-final { scan-tree-dump-not "if" "optimized" } } */
/* { dg-final { scan-tree-dump-times " & " 1 "optimized" } } */
|