FIX: Constants Out of Range Not Found by /4Yb

Last reviewed: September 18, 1997
Article ID: Q109874
1.00 1.00a | 1.00
MS-DOS     | WINDOWS NT
kbtool kbfixlist

The information in this article applies to:

- Microsoft FORTRAN PowerStation for MS-DOS, version 1.0 and 1.0a - Microsoft FORTRAN PowerStation 32 for Windows NT, version 1.0

SYMPTOMS

A program that contains a simple arithmetic expression including constant out of range may produce incorrect results. Using the -4Yb compiler option does not give a run-time error on constants that are out of range even though it should.

CAUSE

The constant folding algorithm (arithmetic performed at compile time) generates 0 (zero) for the variable out of range.

RESOLUTION

Avoid using a simple constant expression that might be out of range. Use the temporary variable for the intermediate results and then use this variable in the expression. Compile the program with -4Yb and the appropriate run-time error will be generated.

STATUS

Microsoft has confirmed this to be a problem in Microsoft FORTRAN PowerStation 32 for NT, version 1.0 and FORTRAN Powerstation for MS-DOS version 1.0 and 1.0a. This is not a problem in Microsoft FORTRAN for MS-DOS, version 5.1, or FORTRAN PowerStation 32, version 4.0.

MORE INFORMATION

Sample Code #1

c Compile options required: -4Yb does not affect the behavior c The following code reproduces the problem.

       i=2**50
       write (*,*) i
       end

Sample Code #2

c Compile options required: -4Yb c The following code solves the problem and generates the following c run-time error: run-time F6099: $DEBUG

c            -INTEGER arithmetic overflow

       j=50
       i=2**j
       write (*,*) i
       end


Additional reference words: 1.00 runtime run time
KBCategory: kbtool kbbuglist kbfixlist
KBSubcategory: FL32Iss
Keywords : FL32Iss kbbuglist kbfixlist kbtool
Version : 1.00 1.00a | 1.00
Platform : MS-DOS NT WINDOWS
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.