summaryrefslogtreecommitdiff
path: root/div_ui.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-10-26 15:45:42 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-10-26 15:45:42 +0000
commit6c401575b30ae000564e3901902fd11c6b6da5aa (patch)
tree0d5093f62062653bc6b1aa62424179aa9331f8f2 /div_ui.c
parentb7675330a31e78e7d864bd7e40faf938d863bc46 (diff)
downloadmpfr-6c401575b30ae000564e3901902fd11c6b6da5aa.tar.gz
use MPFR_RET_NAN and MPFR_RET
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1437 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'div_ui.c')
-rw-r--r--div_ui.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/div_ui.c b/div_ui.c
index c01a8e429..e15fb0e6a 100644
--- a/div_ui.c
+++ b/div_ui.c
@@ -50,7 +50,7 @@ mpfr_div_ui (y, x, u, rnd_mode)
if (MPFR_IS_NAN(x))
{
MPFR_SET_NAN(y);
- return 1;
+ MPFR_RET_NAN;
}
MPFR_CLEAR_NAN(y); /* clear NaN flag */
@@ -68,7 +68,7 @@ mpfr_div_ui (y, x, u, rnd_mode)
if (MPFR_IS_ZERO(x)) /* 0/0 is NaN */
{
MPFR_SET_NAN(y);
- return 1;
+ MPFR_RET_NAN;
}
else /* x/0 is Inf */
{
@@ -172,25 +172,25 @@ mpfr_div_ui (y, x, u, rnd_mode)
switch (rnd_mode)
{
case GMP_RNDZ:
- return -MPFR_SIGN(x); /* result is inexact */
+ MPFR_RET(-MPFR_SIGN(x)); /* result is inexact */
case GMP_RNDU:
if (MPFR_SIGN(y) > 0)
mpfr_add_one_ulp (y);
- return 1; /* result is inexact */
+ MPFR_RET(1); /* result is inexact */
case GMP_RNDD:
if (MPFR_SIGN(y) < 0)
mpfr_add_one_ulp (y);
- return -1; /* result is inexact */
+ MPFR_RET(-1); /* result is inexact */
case GMP_RNDN:
if (sh && d < (ONE << (sh - 1)))
- return -MPFR_SIGN(x);
+ MPFR_RET(-MPFR_SIGN(x));
else if (sh && d > (ONE << (sh - 1)))
{
mpfr_add_one_ulp (y);
- return MPFR_SIGN(x);
+ MPFR_RET(MPFR_SIGN(x));
}
else /* sh = 0 or d = ONE << (sh-1) */
{
@@ -201,13 +201,13 @@ mpfr_div_ui (y, x, u, rnd_mode)
if ((sh && inexact) || (!sh && (middle > 0)) || (*yp & (ONE << sh)))
{
mpfr_add_one_ulp (y);
- return MPFR_SIGN(x);
+ MPFR_RET(MPFR_SIGN(x));
}
else
- return -MPFR_SIGN(x);
+ MPFR_RET(-MPFR_SIGN(x));
}
}
- return inexact; /* should never go here */
+ MPFR_RET(inexact); /* should never go here */
}