summaryrefslogtreecommitdiff
path: root/tests/tdiv_ui.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2018-01-30 16:25:08 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2018-01-30 16:25:08 +0000
commit1dc7b5111914de2f0a63c43802b6820ce618221b (patch)
treefe6de57b4c60fcc51e393eb3bedf675912cbd47c /tests/tdiv_ui.c
parent3542627209dc5854305229b5004399b1ce5aec03 (diff)
downloadmpfr-1dc7b5111914de2f0a63c43802b6820ce618221b.tar.gz
[tests/tdiv_ui.c] Fixed a value (from a zsh bug).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@12156 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tdiv_ui.c')
-rw-r--r--tests/tdiv_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tdiv_ui.c b/tests/tdiv_ui.c
index adf0580a7..7c8c7e87b 100644
--- a/tests/tdiv_ui.c
+++ b/tests/tdiv_ui.c
@@ -336,7 +336,7 @@ bug20180126 (void)
mpfr_set_prec (y, 192);
/* The hex constant and the cast below avoid spurious warnings
from GCC with a 32-bit ABI. */
- u = (mp_limb_t) 0xf1430962f7cd785;
+ u = (mp_limb_t) 0x96c9e5dddae06b3b;
inex = mpfr_div_ui (y, x, u, MPFR_RNDN);
mpfr_init2 (z, 192);
mpfr_set_str_binary (z, "0.110110010100111111000100101011011110010101010010001101100110101111001010100011010111010011100001101000110100011101001010000001010000001001011100000100000110101111110100100101011000000110011111E-64");