diff options
Diffstat (limited to 'gcc/value-range.cc')
-rw-r--r-- | gcc/value-range.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/value-range.cc b/gcc/value-range.cc index 528ed54..8e6ec4c 100644 --- a/gcc/value-range.cc +++ b/gcc/value-range.cc @@ -30,6 +30,18 @@ along with GCC; see the file COPYING3. If not see #include "fold-const.h" #include "gimple-range.h" +void +irange::accept (const vrange_visitor &v) const +{ + v.visit (*this); +} + +void +unsupported_range::accept (const vrange_visitor &v) const +{ + v.visit (*this); +} + // Convenience function only available for integers and pointers. wide_int |