home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.ultrix
- Path: sparky!uunet!ukma!darwin.sura.net!spool.mu.edu!news.nd.edu!mentor.cc.purdue.edu!gimli.bio.purdue.edu!mckay
- From: mckay@gimli.bio.purdue.edu (Dwight McKay)
- Subject: Does the current release of DEC Fortran for RISC fix this?
- Message-ID: <BxGvqs.2Fx@mentor.cc.purdue.edu>
- Keywords: F77 fortran risc
- Sender: news@mentor.cc.purdue.edu (USENET News)
- Reply-To: mckay@gimli.bio.purdue.edu (Dwight McKay)
- Organization: Department of Biological Science, Purdue University
- Date: Mon, 9 Nov 1992 21:01:38 GMT
- Lines: 26
-
- The following program is not compilable under DEC Fortran for RISC version 3.0.
- It compiles and runs just fine under every other version of Fortran I had
- available to test (VMS fortran, Sun fortran).
-
- Does anyone know if this program can be compiled under a more recent version
- of DEC Fortran?
-
- What's the current recommended version of DEC Fortran? (if there is such a
- thing)
-
- -- the program --
- Parameter(N=3)
- Real C(N)
- Call B(C,N)
- Stop
- End
- Subroutine A(D)
- Real C(N)
- Entry B(C,N)
- Write(6,*)' Hi there'
- Return
- End
- --
- --Dwight D. McKay, Purdue University, Department of Biological Sciences
- --Office: LILY B-145, Phone: (317) 494-4481
- --mckay@gimli.bio.purdue.edu
-