aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorSteven G. Kargl <kargl@gcc.gnu.org>2019-02-22 20:27:57 +0000
committerSteven G. Kargl <kargl@gcc.gnu.org>2019-02-22 20:27:57 +0000
commitf3e1797acfe601c6ddd047d1afebe1af69426ae1 (patch)
tree2649b75f578e7d62c948fa99dfe04f74a868a8e8 /gcc
parent4770beb36c35cc8cf6be0bf061f987fb9429fa9a (diff)
downloadgcc-f3e1797acfe601c6ddd047d1afebe1af69426ae1.zip
gcc-f3e1797acfe601c6ddd047d1afebe1af69426ae1.tar.gz
gcc-f3e1797acfe601c6ddd047d1afebe1af69426ae1.tar.bz2
re PR fortran/89431 (CPP integer macros not defined)
2019-02-22 Steven G. Kargl <kargl@gcc.gnu.org> PR fortran/89431 * gfortran.texi: Fix documentation to match the implementation. From-SVN: r269132
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fortran/ChangeLog5
-rw-r--r--gcc/fortran/gfortran.texi6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 0eb8604..970d162 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,8 @@
+2019-02-22 Steven G. Kargl <kargl@gcc.gnu.org>
+
+ PR fortran/89431
+ * gfortran.texi: Fix documentation to match the implementation.
+
2019-02-22 Thomas Schwinge <thomas@codesourcery.com>
Cesar Philippidis <cesar@codesourcery.com>
diff --git a/gcc/fortran/gfortran.texi b/gcc/fortran/gfortran.texi
index b6917e7..0a26809 100644
--- a/gcc/fortran/gfortran.texi
+++ b/gcc/fortran/gfortran.texi
@@ -425,9 +425,9 @@ compiler. See @ref{Top,,Overview,cpp,The C Preprocessor} for details.
GNU Fortran supports a number of @code{INTEGER} and @code{REAL} kind types
in additional to the kind types required by the Fortran standard.
The availability of any given kind type is architecture dependent. The
-following pre-defined preprocessor macros can be used to conditional
-include code for these additional kind types: @code{__GFC_INTEGER_1__},
-@code{__GFC_INTEGER_2__}, @code{__GFC_INTEGER_8__}, @code{__GFC_INTEGER_16__},
+following pre-defined preprocessor macros can be used to conditionally
+include code for these additional kind types: @code{__GFC_INT_1__},
+@code{__GFC_INT_2__}, @code{__GFC_INT_8__}, @code{__GFC_INT_16__},
@code{__GFC_REAL_10__}, and @code{__GFC_REAL_16__}.
While CPP is the de-facto standard for preprocessing Fortran code,