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.
This commit is contained in:
Martin Liska 2022-03-07 11:02:15 +01:00
parent d73ae7a72a
commit 93ecb25cc6
2 changed files with 2 additions and 2 deletions

View 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);

View 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%> option not passed from the gcc driver");
return plugindir_string;
}