2 20000818-1.c from the execute part of the gcc torture tests.
9 #pragma disable_warning 85
12 /* Copyright (C) 2000 Free Software Foundation.
14 by Manfred Hollstein <manfredh@redhat.com> */
16 void *temporary_obstack
;
18 static int input (void);
19 static int ISALNUM (int ch
);
20 static void obstack_1grow (void **ptr
, int ch
);
25 testTortureExecute (void)
41 obstack_1grow (&temporary_obstack
, ch
);
50 obstack_1grow (&temporary_obstack
, ch
);
57 static int input (void)
62 static int ISALNUM (int ch
)
64 return ((ch
>= 'A' && ch
<= 'Z')
65 || (ch
>= 'a' && ch
<= 'z')
66 || (ch
>= '0' && ch
<= '0'));
69 static void obstack_1grow (void **ptr
, int ch
)