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