Esempio n. 1
0
void foo (void)
{


  while (!is_end_of_statement ())
    p++;
}
Esempio n. 2
0
File: loop-12.c Progetto: Rotund/huc
void foo (void)
{
  /* The is_end_of_statement call was moved out of the loop at one stage,
     resulting in an endless loop.  */
  while (!is_end_of_statement ())
    p++;
}