This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: [PATCH,fortran]: fix for PR 33395
- From: Tobias Burnus <burnus at net-b dot de>
- To: "Christopher D. Rickett" <crickett at lanl dot gov>
- Cc: fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Wed, 12 Sep 2007 10:02:41 +0200
- Subject: Re: [PATCH,fortran]: fix for PR 33395
- References: <Pine.LNX.4.64.0709111358160.5318@lennox.lanl.gov>
:REVIEWMAIL:
Christopher D. Rickett wrote:
> bootstrapped and regtested on x86 and x86_64 linux with no new failures.
OK. Checked in as Rev. 128418.
Note: In
if (!(expr || pointer))
return NULL_TREE;
[...]
if (expr != NULL && expr->ts.type == BT_DERIVED
I removed the "expr != NULL &&" as this can never happen due to the
first if.
Thanks for the quick fix. GFSL - a Fortran interface to the GSL (GNU
Scientific Library) - works now :-)
http://www.lrz-muenchen.de/services/software/mathematik/gsl/fortran/
However, the test case fails as formatted read does not work if the file
does not end with a line break (PR 33400); if one works around this
problem, the test suite succeeds.
Tobias