summaryrefslogtreecommitdiff
path: root/src/sub1sp.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2018-02-16 00:00:13 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2018-02-16 00:00:13 +0000
commited903ac1f96eef59c7485be1351f7e8229d2f7ee (patch)
tree18a4bc5d218cb0b723365c4ec9dfcad0b7822848 /src/sub1sp.c
parent2d620bac6f1ac70d854da8d5c91c0e8c05e24a62 (diff)
downloadmpfr-ed903ac1f96eef59c7485be1351f7e8229d2f7ee.tar.gz
[src/sub1sp.c] Squeezed useless double-space.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@12252 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/sub1sp.c')
-rw-r--r--src/sub1sp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sub1sp.c b/src/sub1sp.c
index 4f2360fe4..6b9943f91 100644
--- a/src/sub1sp.c
+++ b/src/sub1sp.c
@@ -1449,7 +1449,7 @@ mpfr_sub1sp (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_rnd_t rnd_mode)
b-ulp(b) (cases 1e and 2g) */
int pow2_b = mpfr_powerof2_raw (b);
/* since c is normalized, we need to subtract 1/2 ulp(b) */
- rb = 1;
+ rb = 1;
/* rbb is the bit of weight 1/4 ulp(b) in c. We assume a limb has
at least 2 bits. If the precision is 1, we read in the unused
bits, which should be zero, and this is what we want. */
@@ -1638,7 +1638,7 @@ mpfr_sub1sp (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_rnd_t rnd_mode)
bx--;
/* Update rb and sb */
MPFR_ASSERTD(rbb != MPFR_LIMB_MAX);
- rb = rbb;
+ rb = rbb;
sb = sbb;
/* We don't have anymore a valid Cp+1!
But since B-C >= 2^p+1, the final sub can't unnormalize */
@@ -1652,7 +1652,7 @@ mpfr_sub1sp (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_rnd_t rnd_mode)
mpn_sub_1 (ap, ap, n, MPFR_LIMB_ONE << sh);
ap[n-1] |= MPFR_LIMB_HIGHBIT;
bx--;
- rb = rbb;
+ rb = rbb;
sb = sbb;
}