diff options
author | Martin Liska <mliska@suse.cz> | 2019-04-05 10:37:44 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2019-04-05 08:37:44 +0000 |
commit | 904f3daa028eea44c6a591fb1ac746ee81c72be1 (patch) | |
tree | cf8126bdefb6a0be9b1636a06ee491b90f1ab6a0 /gcc/config/vms/vms-c.c | |
parent | 8d6b13da61aabc7c55d858ee3fd7ae22798d6a61 (diff) | |
download | gcc-904f3daa028eea44c6a591fb1ac746ee81c72be1.zip gcc-904f3daa028eea44c6a591fb1ac746ee81c72be1.tar.gz gcc-904f3daa028eea44c6a591fb1ac746ee81c72be1.tar.bz2 |
Remove usage of apostrophes in error and warning messages (PR translation/89935).
2019-04-05 Martin Liska <mliska@suse.cz>
PR translation/89935
* check-internal-format-escaping.py: Properly detect wrong
apostrophes.
2019-04-05 Martin Liska <mliska@suse.cz>
PR translation/89935
* collect-utils.c (collect_execute): Use %< and %>, or %qs in
order to wrap keywords or arguments.
* collect2.c (main): Likewise.
(scan_prog_file): Likewise.
(scan_libraries): Likewise.
* common/config/riscv/riscv-common.c (riscv_subset_list::parsing_subset_version): Likewise.
(riscv_subset_list::parse_std_ext): Likewise.
* config/aarch64/aarch64.c (aarch64_override_options_internal): Likewise.
* config/arm/arm.c (arm_option_override): Likewise.
* config/cris/cris.c (cris_print_operand): Likewise.
* config/darwin-c.c (darwin_pragma_options): Likewise.
(darwin_pragma_unused): Likewise.
(darwin_pragma_ms_struct): Likewise.
* config/ft32/ft32.c (ft32_print_operand): Likewise.
* config/i386/i386.c (print_reg): Likewise.
(ix86_print_operand): Likewise.
* config/i386/xm-djgpp.h: Likewise.
* config/iq2000/iq2000.c (iq2000_print_operand): Likewise.
* config/m32c/m32c.c (m32c_option_override): Likewise.
* config/msp430/msp430.c (msp430_option_override): Likewise.
* config/nds32/nds32.c (nds32_option_override): Likewise.
* config/nvptx/mkoffload.c (main): Likewise.
* config/rx/rx.c (rx_print_operand): Likewise.
(valid_psw_flag): Likewise.
* config/vms/vms-c.c (vms_pragma_member_alignment): Likewise.
(vms_pragma_nomember_alignment): Likewise.
(vms_pragma_extern_model): Likewise.
* lto-wrapper.c (compile_offload_image): Likewise.
* omp-offload.c (oacc_parse_default_dims): Likewise.
* symtab.c (symtab_node::verify_base): Likewise.
* tlink.c (recompile_files): Likewise.
(start_tweaking): Likewise.
* tree-profile.c (parse_profile_filter): Likewise.
2019-04-05 Martin Liska <mliska@suse.cz>
PR translation/89935
* objc-act.c (objc_add_property_declaration): Use %< and %>, or %qs in
order to wrap keywords or arguments.
(objc_add_synthesize_declaration_for_property): Likewise.
From-SVN: r270163
Diffstat (limited to 'gcc/config/vms/vms-c.c')
-rw-r--r-- | gcc/config/vms/vms-c.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/config/vms/vms-c.c b/gcc/config/vms/vms-c.c index 1e6b9f5..d2bdd04 100644 --- a/gcc/config/vms/vms-c.c +++ b/gcc/config/vms/vms-c.c @@ -77,7 +77,8 @@ vms_pragma_member_alignment (cpp_reader *pfile ATTRIBUTE_UNUSED) } if (tok != CPP_NAME) { - warning (OPT_Wpragmas, "malformed '#pragma member_alignment', ignoring"); + warning (OPT_Wpragmas, + "malformed %<#pragma member_alignment%>, ignoring"); return; } @@ -92,12 +93,12 @@ vms_pragma_member_alignment (cpp_reader *pfile ATTRIBUTE_UNUSED) maximum_field_alignment = saved_member_alignment; else { - error ("unknown '#pragma member_alignment' name %s", arg); + error ("unknown %<#pragma member_alignment%> name %s", arg); return; } if (pragma_lex (&x) != CPP_EOF) { - error ("malformed '#pragma member_alignment'"); + error ("malformed %<#pragma member_alignment%>"); return; } } @@ -131,7 +132,7 @@ vms_pragma_nomember_alignment (cpp_reader *pfile ATTRIBUTE_UNUSED) maximum_field_alignment = 16 * BITS_PER_UNIT; else { - error ("unhandled alignment for '#pragma nomember_alignment'"); + error ("unhandled alignment for %<#pragma nomember_alignment%>"); } tok = pragma_lex (&x); @@ -144,7 +145,7 @@ vms_pragma_nomember_alignment (cpp_reader *pfile ATTRIBUTE_UNUSED) if (tok != CPP_EOF) { - error ("garbage at end of '#pragma nomember_alignment'"); + error ("garbage at end of %<#pragma nomember_alignment%>"); return; } } @@ -199,7 +200,7 @@ vms_pragma_extern_model (cpp_reader *pfile ATTRIBUTE_UNUSED) if (tok != CPP_NAME) { - warning (OPT_Wpragmas, "malformed '#pragma extern_model', ignoring"); + warning (OPT_Wpragmas, "malformed %<#pragma extern_model%>, ignoring"); return; } @@ -225,7 +226,7 @@ vms_pragma_extern_model (cpp_reader *pfile ATTRIBUTE_UNUSED) } else { - error ("unknown '#pragma extern_model' model '%s'", arg); + error ("unknown %<#pragma extern_model%> model %qs", arg); return; } #if 0 |