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 |
DFVV V6.4-165, ovms v6.2 Can someone explain why this code generates a %fort-e-intfunarg,... error? I can't find any reference to an intrinsic function named LOC. If I remove the implicit none statement, it compiles cleanly. Thanks, Jerry ============================================================================== program main implicit none external ss$_normal integer*4 xloc,loc xloc = loc(ss$_normal) end
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
1182.1 | Are you sure it's not %loc? | HYDRA::NEWMAN | Chuck Newman, 508/467-5499 (DTN 297), MRO1-3/F26 | Tue Feb 18 1997 16:47 | 6 |
program main implicit none external ss$_normal integer*4 xloc xloc = %loc(ss$_normal) end | |||||
1182.2 | QUARK::LIONEL | Free advice is worth every cent | Tue Feb 18 1997 20:38 | 4 | |
LOC is a synonym for %LOC - we added it for UNIX compatibility. I'll take a look at it. Steve | |||||
1182.3 | QUARK::LIONEL | Free advice is worth every cent | Wed Feb 19 1997 11:37 | 3 | |
It's a bug. Use %LOC instead as a workaround. Fixed in edit level 189. Steve |