summaryrefslogtreecommitdiff
path: root/extract-dbl.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-01-08 00:21:56 +0100
committerKevin Ryde <user42@zip.com.au>2001-01-08 00:21:56 +0100
commit92a6380d6a98efe05646a26d42e95e2a4a38f18d (patch)
treeea14e9ace8f10ed72b4cc3f1709d0dc3fc7ecc8f /extract-dbl.c
parenta3c2e00608e46a58661f2bd0f9d3738cd7c2c82c (diff)
downloadgmp-92a6380d6a98efe05646a26d42e95e2a4a38f18d.tar.gz
* extract-dbl.c (BITS_PER_PART): Use BITS_PER_MP_LIMB not
BITS_PER_LONGINT. (This is correct because limb==long when not _LONG_LONG_LIMB.)
Diffstat (limited to 'extract-dbl.c')
-rw-r--r--extract-dbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extract-dbl.c b/extract-dbl.c
index cca9e6f0e..1a3729bc0 100644
--- a/extract-dbl.c
+++ b/extract-dbl.c
@@ -43,7 +43,7 @@ __gmp_extract_double (mp_ptr rp, double d)
#define BITS_PER_PART 64 /* somewhat bogus */
unsigned long long int manh, manl;
#else
-#define BITS_PER_PART BITS_PER_LONGINT
+#define BITS_PER_PART BITS_PER_MP_LIMB
unsigned long int manh, manl;
#endif