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 tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000412-2.c
blob
de3ebf9e8638683d0f13e3eef6b7d127c177ce5a
1
int
f
(
int
a
,
int
*
y
)
2
{
3
int
x
=
a
;
4
5
if
(
a
==
0
)
6
return
*
y
;
7
8
return
f
(
a
-
1
,&
x
);
9
}
10
11
int
main
(
int
argc
,
char
**
argv
)
12
{
13
if
(
f
(
100
, (
int
*)
0
) !=
1
)
14
abort
();
15
exit
(
0
);
16
}