blob: 787c29a3b3b6c37dc2ae6becc49b9b764279b2f0 [file] [log] [blame]
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);
}