summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/predict-10.c
blob: a99819a24c6ede10f904b316d691c92973c8fc48 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-profile_estimate" } */
int
ee(int i)
{
  if (i>2)
    return (ee(i-1)+ee(i-2))/2;
  else
    return i;
}
/* { dg-final { scan-tree-dump-times "recursive call" 1 "profile_estimate"} } */