aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2022-03-07 11:02:15 +0100
committerMartin Liska <mliska@suse.cz>2022-03-07 11:03:58 +0100
commit93ecb25cc63f92d12821f8e5186bf165a4f54ab3 (patch)
tree499ab39da896ad5285c4512972f340bdda0df4cd /gcc
parentd73ae7a72a9bcac6a8b031cd902630eaeddf577e (diff)
downloadgcc-93ecb25cc63f92d12821f8e5186bf165a4f54ab3.zip
gcc-93ecb25cc63f92d12821f8e5186bf165a4f54ab3.tar.gz
gcc-93ecb25cc63f92d12821f8e5186bf165a4f54ab3.tar.bz2
translation: small fixes
PR translation/90148 gcc/fortran/ChangeLog: * intrinsic.cc (gfc_is_intrinsic): Remove asterisk from error message. gcc/ChangeLog: * plugin.cc (default_plugin_dir_name): Remove <dir> from error message.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fortran/intrinsic.cc2
-rw-r--r--gcc/plugin.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/intrinsic.cc b/gcc/fortran/intrinsic.cc
index 2b92185..2339d90 100644
--- a/gcc/fortran/intrinsic.cc
+++ b/gcc/fortran/intrinsic.cc
@@ -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);
diff --git a/gcc/plugin.cc b/gcc/plugin.cc
index 10a4fc5..cbe4b7e 100644
--- a/gcc/plugin.cc
+++ b/gcc/plugin.cc
@@ -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%> option not passed from the gcc driver");
return plugindir_string;
}