2 961125-1.c from the execute part of the gcc torture suite.
9 #pragma disable_warning 196
13 begfield (int tab
, char *ptr
, char *lim
, int sword
, int schar
)
17 while (ptr
< lim
&& sword
--)
19 while (ptr
< lim
&& *ptr
!= tab
)
31 if (ptr
+ schar
<= lim
)
38 testTortureExecute (void)
42 if (begfield (':', s
, lim
, 1, 1) != s
+ 2)