Intersect with nonzero bits can indicate change incorrectly.

* value-range.cc (irange::intersect_nonzero_bits): If new
	non-zero mask is the same as original, flag no change.
This commit is contained in:
Andrew MacLeod 2022-10-31 09:53:01 -04:00
parent 81f98afa22
commit 7cc2824e39

View File

@ -3017,6 +3017,10 @@ irange::intersect_nonzero_bits (const irange &r)
if (mask_to_wi (m_nonzero_mask, t) != mask_to_wi (r.m_nonzero_mask, t))
{
wide_int nz = get_nonzero_bits () & r.get_nonzero_bits ();
// If the nonzero bits did not change, return false.
if (nz == get_nonzero_bits ())
return false;
m_nonzero_mask = wide_int_to_tree (t, nz);
if (set_range_from_nonzero_bits ())
return true;