summaryrefslogtreecommitdiff
path: root/src/subnormal.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2014-01-21 13:57:50 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2014-01-21 13:57:50 +0000
commitfffef3b0937b1f0d7b92039226051f16987298ad (patch)
tree182392093f4c4d526bd04c8dcef80319d5b2acb2 /src/subnormal.c
parent1a3a4c42a2ba863fa556ed5a182ad969cde2b76f (diff)
downloadmpfr-fffef3b0937b1f0d7b92039226051f16987298ad.tar.gz
[src/*.c] Replaced mpfr_set_divby0 by the faster MPFR_SET_DIVBY0,
and so on (except for src/exceptions.c). [tools/mpfrlint] Update for flags related functions: check that the macros are used in src (except for exceptions.c and mpfr.h) instead of the functions. [src/mpfr-impl.h] Removed some useless parentheses in comments, for mpfrlint. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8833 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/subnormal.c')
-rw-r--r--src/subnormal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subnormal.c b/src/subnormal.c
index 54cc023db..54d4e23fa 100644
--- a/src/subnormal.c
+++ b/src/subnormal.c
@@ -54,7 +54,7 @@ mpfr_subnormalize (mpfr_ptr y, int old_inexact, mpfr_rnd_t rnd)
__gmpfr_emin + (mpfr_exp_t) MPFR_PREC (y) - 1)))
MPFR_RET (old_inexact);
- mpfr_set_underflow ();
+ MPFR_SET_UNDERFLOW ();
sign = MPFR_SIGN (y);
/* We have to emulate one bit rounding if EXP(y) = emin */