Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000731-1.c
blob: d1ccb5aedcaef816f8fdcc756c95a57c050df66a [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
double
foo
(
void
)
{
return
0.0
;
}
void
do_sibcall
(
void
)
{
(
void
)
foo
();
}
int
main
(
void
)
{
double
x
;
for
(
x
=
0
;
x
<
20
;
x
++)
do_sibcall
();
if
(!(
x
>=
10
))
abort
();
exit
(
0
);
}