diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-01-16 17:40:05 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-01-16 17:40:05 +0100 |
commit | e8d42d280e1be1670d0ef09eb7bd78574082b5f0 (patch) | |
tree | 47caa0844b550a6a644474e56c878200e48d276a /libquadmath/Makefile.am | |
parent | 5b8901caa0c57c993149b2b150f09abeef7ed679 (diff) | |
download | gcc-e8d42d280e1be1670d0ef09eb7bd78574082b5f0.tar.gz |
re PR fortran/46402 (libquadmath: Add fmalq)
PR fortran/46402
* quadmath.map (QUADMATH_1.0): Add fmaq.
* configure.ac: Check for fenv.h, feholdexcept, fesetround,
feupdateenv, fesetenv and fetestexcept.
* configure: Regenerated.
* config.h.in: Regenerated.
* quadmath.h (fmaq): New prototype.
* quadmath_weak.h (fmaq): Add.
* Makefile.am (libquadmath_la_SOURCES): Add math/fmaq.c.
* Makefile.in: Regenerated.
* quadmath-imp.h: Include config.h.
* math/expq.c: Include fenv.h.
(USE_FENV_H): Define if libm support for fe* is there.
(expq): Add fesetround etc. support if USE_FENV_H is defined.
* math/fmaq.c: New file.
* libquadmath.texi (fmaq): Add.
From-SVN: r168852
Diffstat (limited to 'libquadmath/Makefile.am')
-rw-r--r-- | libquadmath/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libquadmath/Makefile.am b/libquadmath/Makefile.am index 87ebf20f294..c4bd0e43bae 100644 --- a/libquadmath/Makefile.am +++ b/libquadmath/Makefile.am @@ -61,7 +61,7 @@ libquadmath_la_SOURCES = \ math/erfq.c math/logq.c math/sqrtq.c math/expm1q.c math/lroundq.c \ math/tanhq.c math/expq.c math/modfq.c math/tanq.c math/fabsq.c \ math/nanq.c math/tgammaq.c math/finiteq.c math/nextafterq.c \ - math/truncq.c math/floorq.c math/powq.c + math/truncq.c math/floorq.c math/powq.c math/fmaq.c # Work around what appears to be a GNU make bug handling MAKEFLAGS # values defined in terms of make variables, as is the case for CC and |