2 loop-12.c from the execute part of the gcc torture tests.
12 /* Checks that pure functions are not treated as const. */
17 is_end_of_statement (void)
19 return *p
== '\n' || *p
== ';' || *p
== '!';
24 /* The is_end_of_statement call was moved out of the loop at one stage,
25 resulting in an endless loop. */
26 while (!is_end_of_statement ())
31 testTortureExecute (void)