Re: [PATCH] libcpp: Fix up raw string literal parsing error-recovery [PR96323]

2020-07-28 Thread Nathan Sidwell
On 7/28/20 4:26 AM, Jakub Jelinek wrote: Hi! For (invalid) newline inside of the raw string literal delimiter, doing continue means we skip the needed processing of newlines. Instead of duplicating that, this patch just doesn't continue for those. Bootstrapped/regtested on x86_64-linux and i68

[PATCH] libcpp: Fix up raw string literal parsing error-recovery [PR96323]

2020-07-28 Thread Jakub Jelinek via Gcc-patches
Hi! For (invalid) newline inside of the raw string literal delimiter, doing continue means we skip the needed processing of newlines. Instead of duplicating that, this patch just doesn't continue for those. Bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk? 2020-07-28 Jakub J