summaryrefslogtreecommitdiff
path: root/add.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-02-27 15:46:06 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-02-27 15:46:06 +0000
commitdf7fc35899973db44b5462170f3d533898589d36 (patch)
tree3ec96a320edcf8957b3327f21acf2e98f15c8516 /add.c
parent206f7135b7061a5536e612846b29f5fefbcb716f (diff)
downloadmpfr-df7fc35899973db44b5462170f3d533898589d36.tar.gz
Untabified and deleted trailing spaces (for patches).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6043 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'add.c')
-rw-r--r--add.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/add.c b/add.c
index bfe36ec04..0b3e1bbaa 100644
--- a/add.c
+++ b/add.c
@@ -61,9 +61,9 @@ mpfr_add (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t rnd_mode)
{
if (MPFR_IS_ZERO(c))
{
- /* for round away, we take the same convention for 0 + 0
- as for round to zero or to nearest: it always gives +0,
- except (-0) + (-0) = -0. */
+ /* for round away, we take the same convention for 0 + 0
+ as for round to zero or to nearest: it always gives +0,
+ except (-0) + (-0) = -0. */
MPFR_SET_SIGN(a,
(rnd_mode != GMP_RNDD ?
((MPFR_IS_NEG(b) && MPFR_IS_NEG(c)) ? -1 : 1) :