aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/decl.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2017-05-19 13:52:14 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2017-05-19 13:52:14 +0000
commit546c8974ff51ef7554e18d94177fc953c0e54b95 (patch)
treeec0a2b685388ea3e95b2a0809937cd06801fdd82 /gcc/fortran/decl.c
parent43e89e0a1e35194c9a00de873518e5d81f21d5bf (diff)
downloadgcc-546c8974ff51ef7554e18d94177fc953c0e54b95.zip
gcc-546c8974ff51ef7554e18d94177fc953c0e54b95.tar.gz
gcc-546c8974ff51ef7554e18d94177fc953c0e54b95.tar.bz2
fortran: remove trailing exclamation mark from various diagnostics (PR fortran/79852)
gcc/fortran/ChangeLog: PR fortran/79852 * bbt.c (insert): Remove trailing exclamation mark from message. * decl.c (gfc_match_final_decl): Likewise. * dump-parse-tree.c (show_expr): Likewise. * module.c (gfc_use_module): Likewise. * primary.c (build_actual_constructor): Likewise. (gfc_convert_to_structure_constructor): Likewise. From-SVN: r248283
Diffstat (limited to 'gcc/fortran/decl.c')
-rw-r--r--gcc/fortran/decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c
index 80d073d..bd31070 100644
--- a/gcc/fortran/decl.c
+++ b/gcc/fortran/decl.c
@@ -9969,7 +9969,7 @@ gfc_match_final_decl (void)
for (f = block->f2k_derived->finalizers; f; f = f->next)
if (f->proc_sym == sym)
{
- gfc_error ("%qs at %C is already defined as FINAL procedure!",
+ gfc_error ("%qs at %C is already defined as FINAL procedure",
name);
return MATCH_ERROR;
}