This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [Patch, fortran] PR20938, PR24519 and where_19 - equivalence dependencies
- From: Paul Thomas <paulthomas2 at wanadoo dot fr>
- To: Tobias Schlüter <tobias dot schlueter at physik dot uni-muenchen dot de>
- Cc: "'fortran at gcc dot gnu dot org'" <fortran at gcc dot gnu dot org>, patch <gcc-patches at gcc dot gnu dot org>, Roger Sayle <roger at eyesopen dot com>, Brooks Moses <bmoses at stanford dot edu>
- Date: Thu, 23 Feb 2006 00:56:14 +0100
- Subject: Re: [Patch, fortran] PR20938, PR24519 and where_19 - equivalence dependencies
- References: <43F81F67.705@wanadoo.fr> <43FBA5D1.8040705@physik.uni-muenchen.de>
Tobi
+ else if (flag1)
+ {
+ e2 = e3;
+ e3 = e1;
+ }
+ else
+ {
+ e2 = e4;
+ e4 = e1;
+ }
Setting e2 here serves no purpose, as it will be overwritten during the next
iteration.
It's worse than that - I lost it totally here. I will come back with
the real thing in a day or so. Submit in haste, repent in leisure and
all that....
Paul