Import a patch from GCC PR c/16999 to stop quoting already quoted ident

strings.
This commit is contained in:
Alexander Kabaev 2004-10-15 03:22:13 +00:00
parent 292f200484
commit 1689e31de6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/vendor/gcc/dist/; revision=136527

View File

@ -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++;
}