diff options
author | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-02-15 10:29:31 +0000 |
---|---|---|
committer | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-02-15 10:29:31 +0000 |
commit | cfaefd19d38292c5b0d8906c218c98ad953b28c6 (patch) | |
tree | 6f1ad451cbbfeae24433864694d8450484d541f7 /asin.c | |
parent | f33368472babca56d40bdc5378f10fe71c341259 (diff) | |
download | mpfr-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.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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))) { |