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

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