diff options
author | Marius Hillenbrand <mhillen@linux.ibm.com> | 2020-12-01 11:02:27 +0100 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.ibm.com> | 2020-12-01 11:29:09 +0100 |
commit | a5dd6b69fcbe74c02d4821ac2daf2b8c9f819f6e (patch) | |
tree | 78b146b12ca2fe39d2170da0e04c2eb9d1f9da52 /gcc/config.in | |
parent | cffd725c0eb44daa0234f3af39cd94ad97f2833d (diff) | |
download | gcc-a5dd6b69fcbe74c02d4821ac2daf2b8c9f819f6e.zip gcc-a5dd6b69fcbe74c02d4821ac2daf2b8c9f819f6e.tar.gz gcc-a5dd6b69fcbe74c02d4821ac2daf2b8c9f819f6e.tar.bz2 |
IBM Z: Configure excess precision for float at compile-time
Historically, float_t has been defined as double on s390 and gcc would
emit double precision insns for evaluating float expressions when in
standard-compliant mode. Configure that behavior at compile-time as prep
for changes in glibc: When glibc ties float_t to double, keep the old
behavior; when glibc derives float_t from FLT_EVAL_METHOD (as on most
other archs), revert to the default behavior (i.e.,
FLT_EVAL_METHOD_PROMOTE_TO_FLOAT). Provide a configure option
--enable-s390-excess-float-precision to override the check.
gcc/ChangeLog:
2020-12-01 Marius Hillenbrand <mhillen@linux.ibm.com>
* configure.ac: Add configure option
--enable-s390-excess-float-precision and check to derive default
from glibc.
* config/s390/s390.c: Guard s390_excess_precision with an ifdef
for ENABLE_S390_EXCESS_FLOAT_PRECISION.
* doc/install.texi: Document --enable-s390-excess-float-precision.
* configure: Regenerate.
* config.in: Regenerate.
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 3221dae..cc6276d 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -236,6 +236,10 @@ /* Define if you want runtime assertions enabled. This is a cheap check. */ #undef ENABLE_RUNTIME_CHECKING +/* Define to enable evaluating float expressions with double precision in + standards-compatible mode on s390 targets. */ +#undef ENABLE_S390_EXCESS_FLOAT_PRECISION + /* Define if you want all operations on trees (the basic data structure of the front ends) to be checked for dynamic type safety at runtime. This is moderately expensive. */ |