FIX: PRECISION Intrinsic Function Yields Incorrect Results

ID: Q59227


The information in this article applies to:
  • Microsoft FORTRAN for MS-DOS, version 5.0
  • Microsoft FORTRAN for OS/2, version 5.0


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 

Additional query words: 5.00 buglist5.00 fixlist5.10

Keywords :
Version : :5.0
Platform :
Issue type :


Last Reviewed: November 1, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.