blob: 95d23a2f9ce2e0e02b8c42e2b77cb1514fc0aeaa [file] [log] [blame]
/* { dg-require-effective-target label_values } */
/* { dg-require-effective-target trampolines } */
/* { dg-add-options stack_size } */
/* A slight variation of 920501-7.c. */
#ifdef STACK_SIZE
#define DEPTH ((STACK_SIZE) / 512 + 1)
#else
#define DEPTH 1000
#endif
x(a)
{
__label__ xlab;
void y(a)
{
void *x = &&llab;
if (a==-1)
goto *x;
if (a==0)
goto xlab;
llab:
y (a-1);
}
y (a);
xlab:;
return a;
}
main ()
{
if (x (DEPTH) != DEPTH)
abort ();
exit (0);
}