mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 23:31:21 +08:00
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:
parent
81f98afa22
commit
7cc2824e39
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user