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
PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20030718-1.c
blob
2a113f95e194c4dd570c6ac84b09d1933c74d57c
1
/* PR c/10320
2
The function temp was not being emitted in a prerelease of 3.4 20030406.
3
Contributed by pinskia@physics.uc.edu */
4
5
static
inline
void
temp
();
6
int
main
()
7
{
8
temp
();
9
return
0
;
10
}
11
static void
temp
(){}
12
13