]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix translation strings.
authorMartin Liska <mliska@suse.cz>
Mon, 7 Mar 2022 09:41:11 +0000 (10:41 +0100)
committerMartin Liska <mliska@suse.cz>
Mon, 7 Mar 2022 09:41:11 +0000 (10:41 +0100)
PR translation/90148

gcc/ChangeLog:

* config/rs6000/rs6000.cc (rs6000_linux64_override_options): Put
quote to a proper place.
* plugin.cc (default_plugin_dir_name): Likewise.

gcc/fortran/ChangeLog:

* intrinsic.cc (gfc_is_intrinsic): Put
quote to a proper place.

gcc/config/rs6000/rs6000.cc
gcc/fortran/intrinsic.cc
gcc/plugin.cc

index 7afbc295e038553653382c4d5d8d651486d1f98f..3afe78f5d04983af7bcebf1e3681bd131e6c09e3 100644 (file)
@@ -3512,7 +3512,7 @@ rs6000_linux64_override_options ()
        {
          if (OPTION_SET_P (rs6000_current_cmodel)
              && rs6000_current_cmodel != CMODEL_SMALL)
-           error ("%<-mcmodel incompatible with other toc options%>");
+           error ("%<-mcmodel%> incompatible with other toc options");
          if (TARGET_MINIMAL_TOC)
            SET_CMODEL (CMODEL_SMALL);
          else if (TARGET_PCREL
index 52e5f4ed39eb4dcf7973a5e9b9210788115253a4..2b92185a6559a371f2aa10e70b1a616c342d3ad0 100644 (file)
@@ -1184,7 +1184,7 @@ gfc_is_intrinsic (gfc_symbol* sym, int subroutine_flag, locus loc)
        gfc_warning_now (OPT_Wintrinsics_std, "The intrinsic %qs at %L is not "
                         "included in the selected standard but %s and %qs will"
                         " be treated as if declared EXTERNAL.  Use an"
-                        " appropriate %<-std=%>* option or define"
+                        " appropriate %<-std=*%> option or define"
                         " %<-fall-intrinsics%> to allow this intrinsic.",
                         sym->name, &loc, symstd, sym->name);
 
index fe28b8269ef47488047b47d86d0a4270fb151348..10a4fc597ba5ca8612c098fe2842e8bd67f6e602 100644 (file)
@@ -1006,6 +1006,6 @@ default_plugin_dir_name (void)
 {
   if (!plugindir_string)
     fatal_error (input_location,
-                "%<-iplugindir%> <dir> option not passed from the gcc driver");
+                "%<-iplugindir <dir>%> option not passed from the gcc driver");
   return plugindir_string;
 }