re PR fortran/62245 (gfortran miscompiles int() on mips)
authorJoost VandeVondele <vondele@gcc.gnu.org>
Fri, 5 Sep 2014 13:40:05 +0000 (13:40 +0000)
committerJoost VandeVondele <vondele@gcc.gnu.org>
Fri, 5 Sep 2014 13:40:05 +0000 (13:40 +0000)
        PR fortran/62245
        * intrinsic.texi (INT): clarify result.

From-SVN: r214958

gcc/fortran/ChangeLog
gcc/fortran/intrinsic.texi

index 9eeb4cf419b761292fa2d34751f12e419e3c1993..236c9097dad954924b5b70ca6466f236cbcb1cf8 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-05  Joost VandeVondele  <vondele@gcc.gnu.org>
+
+       PR fortran/62245
+       * intrinsic.texi (INT): clarify result.
+
 2014-09-03  Fritz Reese  <Reese-Fritz@zai.com>
 
        PR fortran/62174
index 0f4a8a7021fe30cc8f3c5a604cbb463317d93965..48713a675193cb52171e24529de5645e58454888 100644 (file)
@@ -7370,9 +7370,10 @@ the following rules:
 @item (A)
 If @var{A} is of type @code{INTEGER}, @code{INT(A) = A} 
 @item (B)
-If @var{A} is of type @code{REAL} and @math{|A| < 1}, @code{INT(A)} equals @code{0}. 
-If @math{|A| \geq 1}, then @code{INT(A)} equals the largest integer that does not exceed 
-the range of @var{A} and whose sign is the same as the sign of @var{A}.
+If @var{A} is of type @code{REAL} and @math{|A| < 1}, @code{INT(A)}
+equals @code{0}. If @math{|A| \geq 1}, then @code{INT(A)} is the integer
+whose magnitude is the largest integer that does not exceed the magnitude
+of @var{A} and whose sign is the same as the sign of @var{A}.
 @item (C)
 If @var{A} is of type @code{COMPLEX}, rule B is applied to the real part of @var{A}.
 @end table