summaryrefslogtreecommitdiff
path: root/asin.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 /asin.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 'asin.c')
-rw-r--r--asin.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/asin.c b/asin.c
index 3be0a6969..5c3902657 100644
--- a/asin.c
+++ b/asin.c
@@ -1,6 +1,6 @@
/* mpfr_asin -- arc-sinus of a floating-point number
-Copyright 2001, 2002, 2003, 2004 Free Software Foundation.
+Copyright 2001, 2002, 2003, 2004, 2005 Free Software Foundation.
This file is part of the MPFR Library, and was contributed by Mathieu Dutour.
@@ -31,6 +31,9 @@ mpfr_asin (mpfr_ptr asin, mpfr_srcptr x, mp_rnd_t rnd_mode)
MPFR_SAVE_EXPO_DECL (expo);
MPFR_ZIV_DECL (loop);
+ MPFR_LOG_FUNC (("x[%#R]=%R rnd=%d", x, x, rnd_mode),
+ ("asin[%#R]=%R inexact=%d", asin, asin, inexact));
+
/* Special cases */
if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (x)))
{