8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/920501-7.c
Michael Meissner 14806ff142 Remove CYGNUS LOCAL markers
From-SVN: r34009
2000-05-19 02:54:38 +00:00

31 lines
340 B
C

#ifdef STACK_SIZE
#define DEPTH ((STACK_SIZE) / 512 + 1)
#else
#define DEPTH 1000
#endif
#ifndef NO_LABEL_VALUES
x(a)
{
__label__ xlab;
void y(a)
{
if (a==0)
goto xlab;
y (a-1);
}
y (a);
xlab:;
return a;
}
#endif
main ()
{
#ifndef NO_LABEL_VALUES
if (x (DEPTH) != DEPTH)
abort ();
#endif
exit (0);
}