diff options
author | Tom Tromey <tromey@redhat.com> | 2005-09-15 17:10:27 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2005-09-15 17:10:27 +0000 |
commit | 4343a3c2cf48d5805a6e4b52d32b676238f4c8cc (patch) | |
tree | 9ac063a131a0e56ff57e4104d42ad784b3a620af /native/fdlibm | |
parent | 1967ade32bb55b52ba07c4113cd95e54c420a26b (diff) | |
download | classpath-4343a3c2cf48d5805a6e4b52d32b676238f4c8cc.tar.gz |
Workaround for PR classpath/23863:
* native/fdlibm/mprec.h (MAX_BIGNUM_WDS): Define as 128 on
non-Pack_32 platforms.
Diffstat (limited to 'native/fdlibm')
-rw-r--r-- | native/fdlibm/mprec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/native/fdlibm/mprec.h b/native/fdlibm/mprec.h index d796b81de..f250619b0 100644 --- a/native/fdlibm/mprec.h +++ b/native/fdlibm/mprec.h @@ -291,7 +291,12 @@ extern double rnd_prod(double, double), rnd_quot(double, double); #define MAX_BIGNUMS 16 +#ifdef Pack_32 #define MAX_BIGNUM_WDS 32 +#else + /* Note that this is a workaround for */ +#define MAX_BIGNUM_WDS 128 +#endif struct _Jv_Bigint { |