summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2014-06-26 10:55:09 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2014-06-26 10:55:09 +0000
commit4be6dad958efb74af2abde7c50f654ebcbb4d7d2 (patch)
tree374f1141354722b4349e5d2f010559ca1061530d /src
parentc2f9131d435bb0f84a018f09f97e51693e4189b1 (diff)
downloadmpfr-4be6dad958efb74af2abde7c50f654ebcbb4d7d2.tar.gz
[src/vasprintf.c] Improved comments.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9109 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src')
-rw-r--r--src/vasprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vasprintf.c b/src/vasprintf.c
index 2d493ef0d..999539975 100644
--- a/src/vasprintf.c
+++ b/src/vasprintf.c
@@ -873,7 +873,7 @@ regular_ab (struct number_parts *np, mpfr_srcptr p,
first digit, we want the exponent for radix two and the decimal
point AFTER the first digit. */
{
- /* An overflow is normally not possible since MPFR_EXP_MIN
+ /* An integer overflow is normally not possible since MPFR_EXP_MIN
is twice as large as MPFR_EMIN_MIN. */
MPFR_ASSERTN (exp > (MPFR_EXP_MIN + 3) / 4);
exp = (exp - 1) * 4;
@@ -882,7 +882,7 @@ regular_ab (struct number_parts *np, mpfr_srcptr p,
/* EXP is the exponent for decimal point BEFORE the first digit, we
want the exponent for decimal point AFTER the first digit. */
{
- /* An overflow is normally not possible since MPFR_EXP_MIN
+ /* An integer overflow is normally not possible since MPFR_EXP_MIN
is twice as large as MPFR_EMIN_MIN. */
MPFR_ASSERTN (exp > MPFR_EXP_MIN);
--exp;