Commit 6726b907 by Benno Schulenberg Committed by Jeff Law

re PR translation/52289 (translatable string typo: "must not be have")

        PR translation/52289
        * fortran/resolve.c (resolve_ordinary_assign): Fix typoed word
        in an error message.

From-SVN: r207609
parent 7ba03e5e
2014-02-07 Benno Schulenberg <bensberg@justemail.net>
PR translation/52289
* fortran/resolve.c (resolve_ordinary_assign): Fix typoed word
in an error message.
2014-02-02 Mikael Morin <mikael@gcc.gnu.org> 2014-02-02 Mikael Morin <mikael@gcc.gnu.org>
PR fortran/57033 PR fortran/57033
......
...@@ -9218,7 +9218,7 @@ resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns) ...@@ -9218,7 +9218,7 @@ resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
/* F2008, Section 7.2.1.2. */ /* F2008, Section 7.2.1.2. */
if (gfc_is_coindexed (lhs) && gfc_has_ultimate_allocatable (lhs)) if (gfc_is_coindexed (lhs) && gfc_has_ultimate_allocatable (lhs))
{ {
gfc_error ("Coindexed variable must not be have an allocatable ultimate " gfc_error ("Coindexed variable must not have an allocatable ultimate "
"component in assignment at %L", &lhs->where); "component in assignment at %L", &lhs->where);
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment