This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: compilation time of block data
- From: Steve Kargl <sgk at troutmask dot apl dot washington dot edu>
- To: Bud Davis <bdavis9659 at sbcglobal dot net>
- Cc: fortran at gcc dot gnu dot org
- Date: Fri, 31 Mar 2006 11:24:28 -0800
- Subject: Re: compilation time of block data
- References: <20060331191213.89791.qmail@web81211.mail.mud.yahoo.com>
On Fri, Mar 31, 2006 at 11:12:13AM -0800, Bud Davis wrote:
>
> $ cat c.f
> integer size / 250000 /
> print*,' BLOCK DATA'
> print*,' REAL R(',SIZE,')'
> print*,' COMMON /ONE/ R'
> print*,' DATA R / 0.500'
>
> DO I = 1,SIZE-1
> print*,' 1 ,',RAND() * 10000
> ENDDO
>
> print*,' 1/'
> print*,' END'
> end
> $ gfortran c.f
> $ ./a.out >d.f
> $ time gfortran -c d.f
>
> i plan on looking at this in gfortran, unless it is
> too hard (or has recursice routines !!)
>
I get 250000 errors
Error: Unclassifiable statement at (1)
In file bud2.f90:903
1 , 3773.640
1
Error: Unclassifiable statement at (1)
In file bud2.f90:904
1 , 3576.718
1
Error: Unclassifiable statement at (1)
In file bud2.f90:905
--
Steve