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-2.c
blob
e982b0c2065db79f4d325825a0f9e93f62b6d9b3
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -foptimize-sibling-calls -fdump-tree-tailr1-details" } */
3
int
4
t
(
char
*
a
)
5
{
6
static char
p
[
100
];
7
if
(
a
)
8
return
t
(
p
);
9
else
10
return
0
;
11
}
12
/* { dg-final { scan-tree-dump-times "Eliminated tail recursion" 1 "tailr1"} } */