From 9d30f270db7f21cd6a501dc94b28a76831444e87 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Fri, 29 Dec 2006 09:15:08 +0100 Subject: re PR preprocessor/29612 (gcc --save-temps does not give "multi-character character constant" error) PR preprocessor/29612 * directives.c (do_linemarker): Set pfile->buffer->sysp always, not only when new_sysp is non-zero. * gcc.dg/cpp/pr29612-1.c: New test. * gcc.dg/cpp/pr29612-2.c: New test. From-SVN: r120257 --- libcpp/directives.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcpp/directives.c') diff --git a/libcpp/directives.c b/libcpp/directives.c index e08698d..7fb142e 100644 --- a/libcpp/directives.c +++ b/libcpp/directives.c @@ -942,8 +942,8 @@ do_linemarker (cpp_reader *pfile) flag = read_flag (pfile, flag); if (flag == 4) new_sysp = 2; - pfile->buffer->sysp = new_sysp; } + pfile->buffer->sysp = new_sysp; check_eol (pfile); } -- cgit v1.1