1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* PR tree-optimization/12517 */ void trivial_regexp_p(int *s, int len) { while (--len) { switch (*s++) { case '\\': switch (*s++) { case '|': ; } } } }