diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-14 01:16:03 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-14 01:16:03 +0000 |
commit | daf887adf9c2baa722b2bb0d577308115a25b673 (patch) | |
tree | 37aa931b677a25810479b28d6d97eb71207f587d /libstdc++-v3/acconfig.h | |
parent | 76b87026096c0924c109d8b4b4fa75e3afbe5a2f (diff) | |
download | gcc-daf887adf9c2baa722b2bb0d577308115a25b673.tar.gz |
2000-06-13 Steven King <sxking@uswest.net>
* acinclude.m4: Fixup some of the builtin math tests and add tests for
__builtin_fmod* and test libm for fmodf, fmodl or _fmodf, _fmodl.
* acconfig.h: Add entries for fmod*.
2000-06-13 Branko Cibej <branko.cibej@hermes.si>
* bits/std_cmath.h: Fix typos in tests (*_FMODFF -> *_FMODF).
Test *_MODFF not *_MODF for modf(float, float*).
(modf(float, float*)): Remove reference to _C_legacy.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34539 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/acconfig.h')
-rw-r--r-- | libstdc++-v3/acconfig.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libstdc++-v3/acconfig.h b/libstdc++-v3/acconfig.h index 510465d6559..91ac2871403 100644 --- a/libstdc++-v3/acconfig.h +++ b/libstdc++-v3/acconfig.h @@ -102,6 +102,15 @@ // Define if the compiler/host combination has __builtin_floorl #undef HAVE_BUILTIN_FLOORL +// Define if the compiler/host combination has __builtin_fmod +#undef HAVE_BUILTIN_FMOD + +// Define if the compiler/host combination has __builtin_fmodf +#undef HAVE_BUILTIN_FMODF + +// Define if the compiler/host combination has __builtin_fmodl +#undef HAVE_BUILTIN_FMODL + // Define if the compiler/host combination has __builtin_frexp #undef HAVE_BUILTIN_FREXP |