summaryrefslogtreecommitdiff
path: root/coth.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-06-22 00:12:18 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-06-22 00:12:18 +0000
commit35e47491aae2d203e35253de6315cc3ab11d50bc (patch)
tree0693e7f1066a5e8387015e06405c9ebd8e96d0b2 /coth.c
parentdecb100a8d962ee0a7bbf9974815361e596c4440 (diff)
downloadmpfr-35e47491aae2d203e35253de6315cc3ab11d50bc.tar.gz
* gen_inverse.h: ACTION_TINY must be called after MPFR_SAVE_EXPO_MARK
(this is necessary for some functions). Moved MPFR_SAVE_EXPO_FREE after the "end:" label. * coth.c, csc.c, csch.c: as a consequence, MPFR_SAVE_EXPO_UPDATE_FLAGS had to be added before "goto end;". * sec.c: a rounding mode was incorrect. * tests/tsec.c: added overflowed_sec0 test. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4569 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'coth.c')
-rw-r--r--coth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/coth.c b/coth.c
index 2e9d1274b..c54ef82eb 100644
--- a/coth.c
+++ b/coth.c
@@ -84,6 +84,7 @@ MA 02110-1301, USA. */
else /* round to zero, or nearest */ \
inexact = -signx; \
} \
+ MPFR_SAVE_EXPO_UPDATE_FLAGS (expo, __gmpfr_flags); \
goto end; \
}