diff options
author | Martin Liska <mliska@suse.cz> | 2019-03-11 14:59:04 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2019-03-11 13:59:04 +0000 |
commit | 93964ebd2fec8d9e2132e118b02f93bea074ebd2 (patch) | |
tree | 8fda972202e700a77c6634e36bb92060c51041a4 /gcc/symtab.c | |
parent | a3f9f006a8e24bfc2a045b918a4f3665407f0018 (diff) | |
download | gcc-93964ebd2fec8d9e2132e118b02f93bea074ebd2.zip gcc-93964ebd2fec8d9e2132e118b02f93bea074ebd2.tar.gz gcc-93964ebd2fec8d9e2132e118b02f93bea074ebd2.tar.bz2 |
Wrap apostrophes in gcc internal format with %'.
2019-03-11 Martin Liska <mliska@suse.cz>
* check-internal-format-escaping.py: Uncomment apostrophes
check.
2019-03-11 Martin Liska <mliska@suse.cz>
* collect-utils.c (collect_wait): Wrap apostrophes
in gcc internal format with %'.
* collect2.c (main): Likewise.
(scan_prog_file): Likewise.
(scan_libraries): Likewise.
* config/i386/i386.c (ix86_expand_call): Likewise.
(ix86_handle_interrupt_attribute): Likewise.
* config/nds32/nds32-intrinsic.c (nds32_expand_builtin_impl): Likewise.
* config/nds32/nds32.c (nds32_insert_attributes): Likewise.
* config/rl78/rl78.c (rl78_handle_saddr_attribute): Likewise.
* lto-wrapper.c (find_crtoffloadtable): Likewise.
* symtab.c (symtab_node::verify_base): Likewise.
* tree-cfg.c (verify_gimple_label): Likewise.
* tree.c (verify_type_variant): Likewise.
2019-03-11 Martin Liska <mliska@suse.cz>
* c-opts.c (c_common_post_options): Wrap apostrophes
in gcc internal format with %'.
2019-03-11 Martin Liska <mliska@suse.cz>
* cvt.c (build_expr_type_conversion): Wrap apostrophes
in gcc internal format with %'.
* decl.c (check_no_redeclaration_friend_default_args): Likewise.
(grokfndecl): Likewise.
* name-lookup.c (do_pushtag): Likewise.
* pt.c (unify_parameter_deduction_failure): Likewise.
(unify_template_deduction_failure): Likewise.
From-SVN: r269587
Diffstat (limited to 'gcc/symtab.c')
-rw-r--r-- | gcc/symtab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/symtab.c b/gcc/symtab.c index 16a2135..c3c057d 100644 --- a/gcc/symtab.c +++ b/gcc/symtab.c @@ -1155,7 +1155,7 @@ symtab_node::verify_base (void) } if (implicit_section && !get_section ()) { - error ("implicit_section flag is set but section isn't"); + error ("implicit_section flag is set but section isn%'t"); error_found = true; } if (get_section () && get_comdat_group () @@ -1174,14 +1174,14 @@ symtab_node::verify_base (void) || strcmp (get_section(), get_alias_target ()->get_section ()))) { - error ("Alias and target's section differs"); + error ("Alias and target%'s section differs"); get_alias_target ()->dump (stderr); error_found = true; } if (alias && definition && get_comdat_group () != get_alias_target ()->get_comdat_group ()) { - error ("Alias and target's comdat groups differs"); + error ("Alias and target%'s comdat groups differs"); get_alias_target ()->dump (stderr); error_found = true; } @@ -1196,7 +1196,7 @@ symtab_node::verify_base (void) ultimate_transparent_alias_target (DECL_ASSEMBLER_NAME (to->decl))); if (!symbol_table::assembler_names_equal_p (name1, name2)) { - error ("Transparent alias and target's assembler names differs"); + error ("Transparent alias and target%'s assembler names differs"); get_alias_target ()->dump (stderr); error_found = true; } |