Home | History | Annotate | Download | only in gcc

Lines Matching refs:equiv

28 #include "value-range-equiv.h"
30 value_range_equiv::value_range_equiv (tree min, tree max, bitmap equiv,
34 set (min, max, equiv, kind);
44 value_range_equiv::set (tree min, tree max, bitmap equiv,
48 set_equiv (equiv);
105 value_range_equiv::set_equiv (bitmap equiv)
108 equiv = NULL;
113 we can use the obstack associated with EQUIV to allocate vr->equiv. */
115 && equiv != NULL)
116 m_equiv = BITMAP_ALLOC (equiv->obstack);
118 if (equiv != m_equiv)
120 if (equiv && !bitmap_empty_p (equiv))
121 bitmap_copy (m_equiv, equiv);