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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
tailrecursion-1.c
blob
fd65c774daf555a64e22d31516ec51a173649e6d
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -foptimize-sibling-calls -fdump-tree-tailr1-details" } */
3
int
4
t
(
int
a
)
5
{
6
if
(
a
)
7
return
t
(
a
-
1
);
8
else
9
return
0
;
10
}
11
/* { dg-final { scan-tree-dump-times "Eliminated tail recursion" 1 "tailr1"} } */