From 0a20abcc95340c9d2bb59421bac84eca4fb43b0c Mon Sep 17 00:00:00 2001 From: kan Date: Fri, 15 Oct 2004 03:22:13 +0000 Subject: Import a patch from GCC PR c/16999 to stop quoting already quoted ident strings. --- contrib/gcc/c-ppoutput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/gcc/c-ppoutput.c b/contrib/gcc/c-ppoutput.c index e97c9bc..5588da3 100644 --- a/contrib/gcc/c-ppoutput.c +++ b/contrib/gcc/c-ppoutput.c @@ -292,7 +292,7 @@ cb_ident (cpp_reader *pfile ATTRIBUTE_UNUSED, fileline line, const cpp_string *str) { maybe_print_line (print.map, line); - fprintf (print.outf, "#ident \"%s\"\n", str->text); + fprintf (print.outf, "#ident %s\n", str->text); print.line++; } -- cgit v1.1