rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr37976.c

7 lines
142 B
C

void percent_x(int ch, char *p, char* ok_chars)
{
char *cp = ch == 'a' ? p : "";
for (;*(cp += __builtin_strspn (cp, ok_chars));)
;
}