FIX: Intrinsic REAL Function Assigned to COMPLEX FailsLast reviewed: September 16, 1997Article ID: Q100376 |
1.00
MS-DOS
kbtool kbfixlist kbbuglist kberrmsg
The information in this article applies to:
SYMPTOMSAn application that assigns the result of a REAL intrinsic function to a COMPLEX variable may generate incorrect results.
CAUSEThe compiler generates incorrect code to perform this assignment.
RESOLUTIONThere are two methods to avoid this problem, as follows:
STATUSMicrosoft has confirmed this to be a problem in FORTRAN PowerStation version 1.0 for MS-DOS. This problem has been resolved with FORTRAN PowerStation maintenance release version 1.0a for MS-DOS. FORTRAN PowerStation version 1.0 can be differentiated from the maintenance release version 1.0a by invoking the linker. Typing "link32 | more" from \F32\BIN directory will show version 2.8 for FORTRAN PowerStation version 1.0, and it will show version 1.0f for the maintenance release version 1.0a.
MORE INFORMATIONSpecifying different compiler options does not correct this problem. The various options only change the incorrect value that the code places in the COMPLEX variable. The following sample code demonstrates this problem:
Sample Code #1c Compile options needed: None
complex*8 c real*4 x x = 1.0 c = exp(x) print *, 'complex c1 = exp(x); c = ', c endThe following sample code demonstrates one method to work around this problem:
Sample Code #2c Compile options needed: None
complex*8 c real*4 x, tmp x = 1.0 tmp = exp(x) c = tmp print *, 'complex c1 = exp(x); c = ', c endThe following sample code demonstrates another method to work around this problem:
Sample Code #3c Compile options needed: None
complex*8 c real*4 x x = 1.0 c = exp(x) + 0 print *, 'complex c1 = exp(x); c = ', c end |
Additional reference words: 1.00 buglist1.00 fixlist1.00a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |