Title: | Digital Fortran |
Notice: | Read notes 1.* for important information |
Moderator: | QUARK::LIONEL |
Created: | Thu Jun 01 1995 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 1333 |
Total number of notes: | 6734 |
subroutine stuff c c environment: Digital Fortran 77 V4.1-92 on Digital UNIX V4.0A c c Problem 1: compiling with "-warn all" doesn't say that MXSPEC isn't used c c Problem 2: f77 generates a message "fort: Warning: No value" c Any idea what this means? The listing file doesn't help either. c INTEGER MXSPEC PARAMETER ( MXSPEC = 50 ) INTEGER NREACT COMMON /SPECSZ/ PSTOIC, NREACT REAL STOICH(1:NREACT,50) POINTER (PSTOIC,STOICH) CALL RPLIST( STOICH ) RETURN END
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
1213.1 | QUARK::LIONEL | Free advice is worth every cent | Thu Mar 06 1997 13:17 | 6 | |
We don't warn for unused PARAMETER constants, only variables. The "no value" message is erroneous and seems to be fixed in later compilers (it doesn't give that message using the 7.1 VMS compiler). Steve |