Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20001130-1.c
blob: 4a996ee6ad3a56a850e8e564c666b0907c4a9eb4 [
file
] [
log
] [
blame
]
static
inline
int
bar
(
void
)
{
return
1
;
}
static
int
mem
[
3
];
static
int
foo
(
int
x
)
{
if
(
x
!=
0
)
return
x
;
mem
[
x
++]
=
foo
(
bar
());
if
(
x
!=
1
)
abort
();
return
0
;
}
int
main
()
{
foo
(
0
);
return
0
;
}