8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/920202-1.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

19 lines
218 B
C

static int rule_text_needs_stack_pop = 0;
static int input_stack_pos = 1;
f (void)
{
rule_text_needs_stack_pop = 1;
if (input_stack_pos <= 0)
return 1;
else
return 0;
}
main ()
{
f ();
exit (0);
}