aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/ieee/ieee_features.F90
diff options
context:
space:
mode:
authorSteven G. Kargl <kargl@gcc.gnu.org>2018-12-29 19:14:32 +0000
committerSteven G. Kargl <kargl@gcc.gnu.org>2018-12-29 19:14:32 +0000
commitede9dea5c4af7ca2c4c557e9f9174c94acc0b1fe (patch)
tree20ff329b4ba94978ae0c6552340ae28cc2d483da /libgfortran/ieee/ieee_features.F90
parent600845521e68b5e0da136636ecf174eee8e5ee17 (diff)
downloadgcc-ede9dea5c4af7ca2c4c557e9f9174c94acc0b1fe.zip
gcc-ede9dea5c4af7ca2c4c557e9f9174c94acc0b1fe.tar.gz
gcc-ede9dea5c4af7ca2c4c557e9f9174c94acc0b1fe.tar.bz2
expr.c (external_spec_function): Add ieee_support_subnormal to list of IEEE inquiry functions.
2018-12-29 Steven G. Kargl <kargl@gcc.gnu.org> * expr.c (external_spec_function): Add ieee_support_subnormal to list of IEEE inquiry functions. 2018-12-29 Steven G. Kargl <kargl@gcc.gnu.org> * gfortran.map: Expose subnormal functions in dynamic library. * ieee/ieee_arithmetic.F90: Add support for IEEE_SUBNORMAL, IEEE_POSITIVE_SUBNORMAL, and IEEE_NEGATIVE_SUBNORMAL. * ieee/ieee_helper.c: Ditto. * ieee/ieee_features.F90: Add IEEE_SUBNORMAL. 2018-12-29 Steven G. Kargl <kargl@gcc.gnu.org> * gfortran.dg/ieee/ieee_11.F90: New test. From-SVN: r267468
Diffstat (limited to 'libgfortran/ieee/ieee_features.F90')
-rw-r--r--libgfortran/ieee/ieee_features.F901
1 files changed, 1 insertions, 0 deletions
diff --git a/libgfortran/ieee/ieee_features.F90 b/libgfortran/ieee/ieee_features.F90
index d5aec3b..af8185e 100644
--- a/libgfortran/ieee/ieee_features.F90
+++ b/libgfortran/ieee/ieee_features.F90
@@ -36,6 +36,7 @@ module IEEE_FEATURES
type(IEEE_FEATURES_TYPE), parameter, public :: &
IEEE_DATATYPE = IEEE_FEATURES_TYPE(0), &
IEEE_DENORMAL = IEEE_FEATURES_TYPE(1), &
+ IEEE_SUBNORMAL = IEEE_FEATURES_TYPE(1), &
IEEE_DIVIDE = IEEE_FEATURES_TYPE(2), &
IEEE_HALTING = IEEE_FEATURES_TYPE(3), &
IEEE_INEXACT_FLAG = IEEE_FEATURES_TYPE(4), &