This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
A multiplicity of parms
- From: Paul Thomas <paulthomas2 at wanadoo dot fr>
- To: "'fortran at gcc dot gnu dot org'" <fortran at gcc dot gnu dot org>
- Date: Thu, 26 Jan 2006 17:51:15 +0100
- Subject: A multiplicity of parms
I just lost a lot of debugging time because I did not know that we had
two declarations for temporaries called parm:
[prt@localhost chars]# grep "\"parm\"" ../gcc-4.2/trunk/gcc/fortran/*
../gcc-4.2/trunk/gcc/fortran/trans-array.c: parm = gfc_create_var
(parmtype, "parm");
../gcc-4.2/trunk/gcc/fortran/trans-expr.c: var = gfc_create_var (type,
"parm");
I propose to change the second, which is the newcomer, to var =
gfc_create_var (type, "ifm"); to stand for interface_mapping.
OK for being obvious?
Paul