mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 05:58:57 +00:00
Import a patch from GCC PR c/16999 to stop quoting already quoted ident
strings.
This commit is contained in:
parent
292f200484
commit
1689e31de6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/vendor/gcc/dist/; revision=136527
@ -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++;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user