FIX: PRECISION Intrinsic Function Yields Incorrect Results (59227)



The information in this article applies to:

  • Microsoft FORTRAN Compiler for MS-DOS 5.0
  • Microsoft FORTRAN compiler for OS/2 5.0

This article was previously published under Q59227

SYMPTOMS

The PRECISION intrinsic function produces incorrect results when an application uses it to find the precision of a REAL number.

STATUS

Microsoft has confirmed this to be a problem with FORTRAN version 5.0 for MS-DOS and OS/2. This problem was corrected in FORTRAN version 5.1 for MS-DOS and OS/2.

MORE INFORMATION

For more information on the PRECISION intrinsic function, see page 242 of the Microsoft FORTRAN "Reference" manual for versions 5.0 and 5.1.

The following code example demonstrates this problem.

Sample Code

C Compile options needed: None

      REAL*4 VAR1
      DOUBLE PRECISION VAR2
      DATA VAR1, VAR2 /0, 0/ 

      WRITE (*, *) PRECISION (VAR1) ! Should output 6, but outputs 15
      WRITE (*, *) PRECISION (VAR2) ! Correctly outputs a 15
      END
				

Modification Type:MajorLast Reviewed:10/23/2003
Keywords:kbfix KB59227