+2014-12-27 Jan hubicka <hubicka@ucw.cz>
+
+ * sreal.h (sreal::shift): Fix sanity check.
+
2014-12-27 Uros Bizjak <ubizjak@gmail.com>
* config/i386/mmx.md (*vec_extractv2sf_1): Do not emit unpckhps.
/* Zero needs no shifting. */
if (!m_sig)
return *this;
- gcc_checking_assert (s <= SREAL_BITS);
- gcc_checking_assert (s >= -SREAL_BITS);
+ gcc_checking_assert (s <= SREAL_MAX_EXP);
+ gcc_checking_assert (s >= -SREAL_MAX_EXP);
/* Overflows/drop to 0 could be handled gracefully, but hopefully we do not
need to do so. */