The information in this article applies to:
SYMPTOMSThe program below causes the following internal compiler error with FORTRAN versions 5.0 and 5.1:
CAUSEThe program defines a common block of arrays that spans three segments. The program then initializes the arrays of the common block to zero. The error is generated because the program is initializing the arrays in a different order than they are specified in the common block. RESOLUTIONThe workaround is to initialize the arrays in the same order that they appear in the common block. STATUSMicrosoft has confirmed this to be a problem in FORTRAN versions 5.0 and 5.1 for MS-DOS and OS/2. This problem was corrected in FORTRAN PowerStation. MORE INFORMATIONThe following program demonstrates the internal compiler error:
The workaround is to initialize the arrays in the order they appear in
the common block as seen below.
Additional query words: 5.00 5.10
Keywords : |
Last Reviewed: November 3, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |