Commit 7bfa4bc5 by Jonathan Wakely Committed by Jonathan Wakely

* real.c (real_from_string): Fix typo in assertion.

From-SVN: r221235
parent 1dfc8b24
2015-03-06 Jonathan Wakely <jwakely@redhat.com>
* real.c (real_from_string): Fix typo in assertion.
2015-03-06 Alex Velenko <alex.velenko@arm.com> 2015-03-06 Alex Velenko <alex.velenko@arm.com>
* ChangeLog (2015-03-05): Reflect Richard Henderson as actual author of * ChangeLog (2015-03-05): Reflect Richard Henderson as actual author of
......
...@@ -2075,7 +2075,7 @@ real_from_string (REAL_VALUE_TYPE *r, const char *str) ...@@ -2075,7 +2075,7 @@ real_from_string (REAL_VALUE_TYPE *r, const char *str)
because the hex digits used in real_from_mpfr did not because the hex digits used in real_from_mpfr did not
start with a digit 8 to f, but the exponent bounds above start with a digit 8 to f, but the exponent bounds above
should have avoided underflow or overflow. */ should have avoided underflow or overflow. */
gcc_assert (r->cl = rvc_normal); gcc_assert (r->cl == rvc_normal);
/* Set a sticky bit if mpfr_strtofr was inexact. */ /* Set a sticky bit if mpfr_strtofr was inexact. */
r->sig[0] |= inexact; r->sig[0] |= inexact;
mpfr_clear (m); mpfr_clear (m);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment