------- Comment #4 from rguenth at gcc dot gnu dot org 2005-10-06 10:58 ------- Reduced testcase:
RkDefineLine(cx_num, name, line) int cx_num; { unsigned int linelen = strlen(line); char *buf = (char *)malloc(linelen + 1), *sp, *dp; while (*sp) { while (*sp && ( *sp != ' ' && *sp != '\t' )) { if (*sp == '\\' && *(sp+1) ) *dp++ = *sp++ ; *dp++ = *sp++; } } } -- rguenth at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2005-10-06 10:58:32 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24232