This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: On types, types, types
On Mon, Jun 28, 2004 at 01:39:16AM +0200, Steven Bosscher wrote:
> On Monday 28 June 2004 01:27, Paul Brook wrote:
>
> Bud, Kargl, I would really appreciate if you could test and make sure
> that the patch doesn't break anything for you before I commit it.
>
I applied the patch, gmake bubblestrap, and ran the gfortran
testsuite. There were no new failures with your patch. This
is on IA32 FreeBSD.
My private test suite is failing with
surface.f90:13: internal compiler error: in gfc_add_modify_expr,
at fortran/trans.c:156
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
*** Error code 1 (continuing)
This is a new failure caused/related to your patch. Here's a
cutdown test case
subroutine surface(fname)
implicit none
character*80, intent(in) :: fname
integer ios
open(unit = 1, file = fname, iostat = ios, status = 'old')
end subroutine surface
--
Steve