Microsoft KB Archive/32677

From BetaArchive Wiki

Comparing 1-Byte Integers in FORTRAN-80

PSS ID Number: Q32677 Article last modified on 05- 4-1989

3.44 CP/M-80 buglist3.44

Summary: The following information applies to Version 3.44 of FORTRAN-80: The following expression will fail when one of the variables is negative: IF (I .LT. J) The expression IF (I .LT. J) will fail when the following is true: I < 0 and J >= (-128 + I) The expression IF (I .GT. J) will fail when the following is true: I >= 0 and J <= (-128 + I)