mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
7ba03e5e3f
commit
6726b9071c
|
|
@ -1,3 +1,9 @@
|
||||||
|
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)
|
||||||
/* 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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue