summaryrefslogtreecommitdiff
path: root/tests/tsub_ui.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-04-07 13:59:37 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-04-07 13:59:37 +0000
commit01468b489e2ad35217f4a4eab6b9f160c5d8049c (patch)
treeb90258a76462738d19df6f54665ec79192e5ad76 /tests/tsub_ui.c
parentaab6696198475b5b6575a01aab71eec62c00cf4c (diff)
downloadmpfr-01468b489e2ad35217f4a4eab6b9f160c5d8049c.tar.gz
Replaced various instances of mpfr_print_binary + newline (sometimes
missing) by mpfr_dump. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@10252 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsub_ui.c')
-rw-r--r--tests/tsub_ui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/tsub_ui.c b/tests/tsub_ui.c
index 652a94916..eb8bda9c9 100644
--- a/tests/tsub_ui.c
+++ b/tests/tsub_ui.c
@@ -74,10 +74,10 @@ check_two_sum (mpfr_prec_t p)
printf ("Wrong inexact flag for prec=%u, rnd=%s\n",
(unsigned int) p, mpfr_print_rnd_mode (rnd));
printf ("x=%u\n", x);
- printf ("y="); mpfr_print_binary(y); puts ("");
- printf ("u="); mpfr_print_binary(u); puts ("");
- printf ("v="); mpfr_print_binary(v); puts ("");
- printf ("w="); mpfr_print_binary(w); puts ("");
+ printf ("y="); mpfr_dump (y);
+ printf ("u="); mpfr_dump (u);
+ printf ("v="); mpfr_dump (v);
+ printf ("w="); mpfr_dump (w);
printf ("inexact = %d\n", inexact);
exit (1);
}