This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/16479] COMMON block names are not private
- From: "olchansk at panix dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 Jul 2004 21:31:22 -0000
- Subject: [Bug fortran/16479] COMMON block names are not private
- References: <20040711212319.16479.olchansk@panix.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From olchansk at panix dot com 2004-07-11 21:31 -------
This is a fix for the incorrectly printed name of the common block:
[olchansk@send fortran]$ cvs diff -u match.c
Index: match.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/fortran/match.c,v
retrieving revision 1.15
diff -u -r1.15 match.c
--- match.c 1 Jul 2004 07:50:18 -0000 1.15
+++ match.c 11 Jul 2004 21:30:04 -0000
@@ -2146,7 +2146,7 @@
if (t->use_assoc)
{
gfc_error ("COMMON block '%s' at %C has already "
- "been USE-associated");
+ "been USE-associated", name);
goto cleanup;
}
}
K.O.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16479