diff options
author | David Malcolm <dmalcolm@redhat.com> | 2017-03-11 01:57:11 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2017-03-11 01:57:11 +0000 |
commit | 2f6f187a86652b0a1d8bac2eda09e25b515c2f46 (patch) | |
tree | 9de6cbad8459257b8d6fb409a46cbf3812b9536d /gcc/ipa-devirt.c | |
parent | 90aaff2cdef2429929ea01fbe1f873bc457ad5a1 (diff) | |
download | gcc-2f6f187a86652b0a1d8bac2eda09e25b515c2f46.zip gcc-2f6f187a86652b0a1d8bac2eda09e25b515c2f46.tar.gz gcc-2f6f187a86652b0a1d8bac2eda09e25b515c2f46.tar.bz2 |
Simplify uses of "%<%s%>" to "%qs" (PR translation/79848)
gcc/c-family/ChangeLog:
PR translation/79848
* c-format.c (check_format_string): Simplify uses of "%<%s%>" to
"%qs".
gcc/c/ChangeLog:
PR translation/79848
* c-decl.c (declspecs_add_type): Simplify uses of "%<%s%>" to
"%qs".
* c-parser.c (c_parser_oacc_shape_clause): Likewise.
gcc/cp/ChangeLog:
PR translation/79848
* decl.c (grokfndecl): Simplify uses of "%<%s%>" to "%qs".
gcc/ChangeLog:
PR translation/79848
* ipa-devirt.c (warn_types_mismatch): Simplify uses of "%<%s%>" to
"%qs".
* ipa-pure-const.c (suggest_attribute): Likewise. Convert _
to G_ to avoid double translation.
From-SVN: r246068
Diffstat (limited to 'gcc/ipa-devirt.c')
-rw-r--r-- | gcc/ipa-devirt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-devirt.c b/gcc/ipa-devirt.c index 0e5eb85..0c74c87 100644 --- a/gcc/ipa-devirt.c +++ b/gcc/ipa-devirt.c @@ -1139,7 +1139,7 @@ warn_types_mismatch (tree t1, tree t2, location_t loc1, location_t loc2) if (name1 && name2 && strcmp (name1, name2)) { inform (loc_t1, - "type name %<%s%> should match type name %<%s%>", + "type name %qs should match type name %qs", name1, name2); if (loc_t2_useful) inform (loc_t2, |