aboutsummaryrefslogtreecommitdiff
path: root/stdlib/gmp-impl.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2020-04-28 15:05:09 +0000
committerJoseph Myers <joseph@codesourcery.com>2020-04-28 15:05:09 +0000
commitdbb188dd87ffdbf0ca3d9cd118ad4176439fb294 (patch)
treee4ce409d0438a4387b76dc0dd92d79902582525d /stdlib/gmp-impl.h
parenta9bfa4353cd39ae2eae3c111844a32f9d3abbc19 (diff)
downloadglibc-dbb188dd87ffdbf0ca3d9cd118ad4176439fb294.zip
glibc-dbb188dd87ffdbf0ca3d9cd118ad4176439fb294.tar.gz
glibc-dbb188dd87ffdbf0ca3d9cd118ad4176439fb294.tar.bz2
Remove unused floating-point configuration from gmp-impl.h.
This patch removes the IEEE_DOUBLE_BIG_ENDIAN and IEEE_DOUBLE_MIXED_ENDIAN macros from gmp-impl.h and gmp-mparam.h, and the ieee_double_extract union from gmp-impl.h. The macros were used only in defining the union, which was used nowhere in glibc. As GMP's gmp-impl.h is over 5000 lines, the file in glibc is so far from the GMP version that it doesn't seem to make sense to keep things there that are not relevant in glibc. (I expect there is plenty more in the header after this patch that is also not relevant in glibc and can be cleaned up later.) Tested with build-many-glibcs.py that installed stripped shared libraries are unchanged by this patch.
Diffstat (limited to 'stdlib/gmp-impl.h')
-rw-r--r--stdlib/gmp-impl.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/stdlib/gmp-impl.h b/stdlib/gmp-impl.h
index 25193e6..0c6aa30 100644
--- a/stdlib/gmp-impl.h
+++ b/stdlib/gmp-impl.h
@@ -319,53 +319,3 @@ extern void impn_sqr_n_basecase _PROTO ((mp_ptr prodp, mp_srcptr up,
extern void impn_sqr_n _PROTO ((mp_ptr prodp, mp_srcptr up, mp_size_t size,
mp_ptr tspace))
attribute_hidden;
-
-
-
-#ifndef IEEE_DOUBLE_BIG_ENDIAN
-#define IEEE_DOUBLE_BIG_ENDIAN 1
-#endif
-
-#ifndef IEEE_DOUBLE_MIXED_ENDIAN
-#define IEEE_DOUBLE_MIXED_ENDIAN 0
-#endif
-
-#if IEEE_DOUBLE_MIXED_ENDIAN
-union ieee_double_extract
-{
- struct
- {
- unsigned int manh:20;
- unsigned int exp:11;
- unsigned int sig:1;
- unsigned int manl:32;
- } s;
- double d;
-};
-#else
-#if IEEE_DOUBLE_BIG_ENDIAN
-union ieee_double_extract
-{
- struct
- {
- unsigned int sig:1;
- unsigned int exp:11;
- unsigned int manh:20;
- unsigned int manl:32;
- } s;
- double d;
-};
-#else
-union ieee_double_extract
-{
- struct
- {
- unsigned int manl:32;
- unsigned int manh:20;
- unsigned int exp:11;
- unsigned int sig:1;
- } s;
- double d;
-};
-#endif
-#endif