diff options
Diffstat (limited to 'gcc/value-range.h')
-rw-r--r-- | gcc/value-range.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/value-range.h b/gcc/value-range.h index b64e024..90a395f 100644 --- a/gcc/value-range.h +++ b/gcc/value-range.h @@ -96,8 +96,8 @@ public: bool may_contain_p (tree) const; // DEPRECATED void set (tree); // DEPRECATED bool equal_p (const irange &) const; // DEPRECATED - void union_ (const class irange *); // DEPRECATED - void intersect (const irange *); // DEPRECATED + void legacy_verbose_union_ (const class irange *); // DEPRECATED + void legacy_verbose_intersect (const irange *); // DEPRECATED protected: irange (tree *, unsigned); @@ -549,7 +549,7 @@ irange::union_ (const irange &r) { dump_flags_t m_flags = dump_flags; dump_flags &= ~TDF_DETAILS; - irange::union_ (&r); + irange::legacy_verbose_union_ (&r); dump_flags = m_flags; } @@ -558,7 +558,7 @@ irange::intersect (const irange &r) { dump_flags_t m_flags = dump_flags; dump_flags &= ~TDF_DETAILS; - irange::intersect (&r); + irange::legacy_verbose_intersect (&r); dump_flags = m_flags; } |