blob: b884f94ddd281cb25e7c23325d72c40cadd2d9da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
[[gnu::const]]
int constcall(int);
int f(int a, int b)
{
int c = b+a;
int t = constcall(c);
int d;
if (a == 0) d= b; else d= c;
return constcall(d) + t;
}
/* There should be no if statement and 2 calls to call1. */
/* { dg-final { scan-tree-dump-not "if " "optimized" } } */
/* { dg-final { scan-tree-dump-times "constcall " 1 "optimized" } } */
|