summaryrefslogtreecommitdiff
path: root/acosh.c
diff options
context:
space:
mode:
authorpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-02-15 10:29:31 +0000
committerpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-02-15 10:29:31 +0000
commitcfaefd19d38292c5b0d8906c218c98ad953b28c6 (patch)
tree6f1ad451cbbfeae24433864694d8450484d541f7 /acosh.c
parentf33368472babca56d40bdc5378f10fe71c341259 (diff)
downloadmpfr-cfaefd19d38292c5b0d8906c218c98ad953b28c6.tar.gz
Log input and ouput of functions.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3315 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'acosh.c')
-rw-r--r--acosh.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/acosh.c b/acosh.c
index bca371a0e..3a876a70c 100644
--- a/acosh.c
+++ b/acosh.c
@@ -32,6 +32,9 @@ mpfr_acosh (mpfr_ptr y, mpfr_srcptr x , mp_rnd_t rnd_mode)
int inexact;
int comp;
+ MPFR_LOG_FUNC (("x[%#R]=%R rnd=%d", x, x, rnd_mode),
+ ("y[%#R]=%R inexact=%d", y, y, inexact));
+
/* Deal with special cases */
if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (x)))
{