summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2003-10-19 00:40:19 +0200
committerKevin Ryde <user42@zip.com.au>2003-10-19 00:40:19 +0200
commit6e4eb0785f6ed156883fdcef5050d194cd74e2fe (patch)
treeb061cca28314d5a889dc074fa528867cc5ae36ba /tests
parentfa8602de4698a3c4dc567b429b042010d132e240 (diff)
downloadgmp-6e4eb0785f6ed156883fdcef5050d194cd74e2fe.tar.gz
Unkludge.
Diffstat (limited to 'tests')
-rw-r--r--tests/mpn/t-get_d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mpn/t-get_d.c b/tests/mpn/t-get_d.c
index 9df5e880d..d719b9ad6 100644
--- a/tests/mpn/t-get_d.c
+++ b/tests/mpn/t-get_d.c
@@ -176,7 +176,7 @@ void
check_underflow (void)
{
static const long exp_table[] = {
- -999999L, LONG_MIN + 1024,
+ -999999L, LONG_MIN,
};
static const mp_limb_t np[1] = { 1 };
@@ -221,7 +221,7 @@ void
check_inf (void)
{
static const long exp_table[] = {
- 999999L, LONG_MAX - 1024,
+ 999999L, LONG_MAX,
};
static const mp_limb_t np[4] = { 1, 1, 1, 1 };
long exp;