summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/predict-12.c
blob: 1fd4d67c60ec7cc33eccf4bc8fb1986f7ecd9df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-profile_estimate" } */
int *a,n,m;
void test(void);
void
t(void)
{
  int i,j;
  for (i=0;i<n;i++)
    if (a[i])
      for (j=0;j<m;j++)
	if (a[i+j])
	  t();
}
/* { dg-final { scan-tree-dump-times "loop guard with recursion" 1 "profile_estimate"} } */
/* { dg-final { scan-tree-dump-times "loop exit with recursion" 2 "profile_estimate"} } */
/* { dg-final { scan-tree-dump-times "recursive call" 1 "profile_estimate"} } */