repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
predict-10.c
blob
a99819a24c6ede10f904b316d691c92973c8fc48
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"} } */