From 565fc114d978d910a44b9498e1b65fa51f02b3e3 Mon Sep 17 00:00:00 2001 From: Tobias Burnus Date: Tue, 16 Aug 2011 23:26:23 +0200 Subject: re PR fortran/50094 (FAIL: gfortran.dg/coarray_6.f90) 2011-08-16 Tobias Burnus Dominique Dhumieres PR fortran/50094 * resolve.c (resolve_symbol): Fix stupid typo. Co-Authored-By: Dominique d'Humieres From-SVN: r177801 --- gcc/fortran/ChangeLog | 6 ++++++ gcc/fortran/resolve.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'gcc') diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 8112ecc..63d5327 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2011-08-16 Tobias Burnus + Dominique Dhumieres + + PR fortran/50094 + * resolve.c (resolve_symbol): Fix stupid typo. + 2011-08-15 Tobias Burnus * resolve.c (resolve_symbol): Fix coarray result-var check. diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c index a9bfbcf..27e3ce9 100644 --- a/gcc/fortran/resolve.c +++ b/gcc/fortran/resolve.c @@ -12257,7 +12257,7 @@ resolve_symbol (gfc_symbol *sym) || sym->attr.codimension) && (sym->attr.result || sym->result == sym)) { - gfc_error ("Function result '%s' at %L shallolvnot be a coarray or have " + gfc_error ("Function result '%s' at %L shall not be a coarray or have " "a coarray component", sym->name, &sym->declared_at); return; } -- cgit v1.1