Commit 794ba78b by Tobias Schlüter Committed by Tobias Schlüter

re PR fortran/16336 (ICE with common block in module)

PR fortran/16336
* match.c (match_common): Fix error reporting for used common.

From-SVN: r84462
parent 33dc5b0b
......@@ -3,6 +3,9 @@
* expr.c (gfc_check_pointer_assign): Verify that rank of the LHS
and RHS match. Return early if the RHS is NULL().
PR fortran/16336
* match.c (match_common): Fix error reporting for used common.
2004-07-10 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* trans-common.c: Fix whitespace issues, make variable names
......
......@@ -2146,7 +2146,7 @@ gfc_match_common (void)
if (t->use_assoc)
{
gfc_error ("COMMON block '%s' at %C has already "
"been USE-associated");
"been USE-associated", name);
goto cleanup;
}
}
......
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