PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920202-1.c
blobe30ce2fd5c224e951c2c31f20a88894b7c6f6d76
1 static int rule_text_needs_stack_pop = 0;
2 static int input_stack_pos = 1;
4 f (void)
6 rule_text_needs_stack_pop = 1;
8 if (input_stack_pos <= 0)
9 return 1;
10 else
11 return 0;
14 main ()
16 f ();
17 exit (0);