blob: ac70d4b639a7c8c0a443de3b74883b638191f053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized-details-blocks" } */
/* Testcase for PR31657. */
int foo (int x, int a, int b)
{
/* if ((x & a) || (x & b)) */
if (x & a)
goto doit;
if (x & b)
goto doit;
/* else */
return 0;
/* then - returing 1 causes phiopt to trigger */
doit:
return 2;
}
/* { dg-final { scan-tree-dump "\\|" "optimized" } } */
/* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */
|