repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20001130-1.c
blob
4a996ee6ad3a56a850e8e564c666b0907c4a9eb4
1
static
inline
int
bar
(
void
) {
return
1
; }
2
static int
mem
[
3
];
3
4
static int
foo
(
int
x
)
5
{
6
if
(
x
!=
0
)
7
return
x
;
8
9
mem
[
x
++] =
foo
(
bar
());
10
11
if
(
x
!=
1
)
12
abort
();
13
14
return
0
;
15
}
16
17
int
main
()
18
{
19
foo
(
0
);
20
return
0
;
21
}