}
else
{
- scm_t_intmax n;
+ scm_t_uintmax abs_n;
+ TYPE n;
size_t count;
if (mpz_sizeinbase (SCM_I_BIG_MPZ (val), 2)
> CHAR_BIT*sizeof (scm_t_uintmax))
goto out_of_range;
- mpz_export (&n, &count, 1, sizeof (scm_t_uintmax), 0, 0,
+ mpz_export (&abs_n, &count, 1, sizeof (scm_t_uintmax), 0, 0,
SCM_I_BIG_MPZ (val));
if (mpz_sgn (SCM_I_BIG_MPZ (val)) >= 0)
{
- if (n < 0)
+ if (abs_n <= TYPE_MAX)
+ n = abs_n;
+ else
goto out_of_range;
}
else
{
- n = -n;
- if (n >= 0)
+ /* Carefully avoid signed integer overflow. */
+ if (TYPE_MIN < 0 && abs_n - 1 <= -(TYPE_MIN + 1))
+ n = -1 - (TYPE)(abs_n - 1);
+ else
goto out_of_range;
}
-/* Copyright (C) 1995-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2016 Free Software Foundation, Inc.
*
* Portions Copyright 1990, 1991, 1992, 1993 by AT&T Bell Laboratories
* and Bellcore. See scm_divide.
}
else
{
+ scm_t_uintmax abs_n;
scm_t_intmax n;
size_t count;
> CHAR_BIT*sizeof (scm_t_uintmax))
return 0;
- mpz_export (&n, &count, 1, sizeof (scm_t_uintmax), 0, 0,
+ mpz_export (&abs_n, &count, 1, sizeof (scm_t_uintmax), 0, 0,
SCM_I_BIG_MPZ (val));
if (mpz_sgn (SCM_I_BIG_MPZ (val)) >= 0)
{
- if (n < 0)
+ if (abs_n <= max)
+ n = abs_n;
+ else
return 0;
}
else
{
- n = -n;
- if (n >= 0)
+ /* Carefully avoid signed integer overflow. */
+ if (min < 0 && abs_n - 1 <= -(min + 1))
+ n = -1 - (scm_t_intmax)(abs_n - 1);
+ else
return 0;
}