diff options
author | kan <kan@FreeBSD.org> | 2004-10-15 03:22:13 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-10-15 03:22:13 +0000 |
commit | 0a20abcc95340c9d2bb59421bac84eca4fb43b0c (patch) | |
tree | 81c297fc31ae91c03f9d9729623ea9b0a29a40ab /contrib | |
parent | d42790ccc00a70f00d10a3b8f17967a5b396bd4d (diff) | |
download | FreeBSD-src-0a20abcc95340c9d2bb59421bac84eca4fb43b0c.zip FreeBSD-src-0a20abcc95340c9d2bb59421bac84eca4fb43b0c.tar.gz |
Import a patch from GCC PR c/16999 to stop quoting already quoted ident
strings.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/c-ppoutput.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++; } |