diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2019-11-14 07:03:30 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2019-11-14 07:03:30 +0000 |
commit | 6ee86466ad973510f4a8e13cf356acf919b9fa20 (patch) | |
tree | 947226c138b6c939062716fbc0cb6bba4ed69bf1 /gcc/value-range.h | |
parent | 9773f69c1161677e68f693562da82c92fd3821da (diff) | |
download | gcc-6ee86466ad973510f4a8e13cf356acf919b9fa20.zip gcc-6ee86466ad973510f4a8e13cf356acf919b9fa20.tar.gz gcc-6ee86466ad973510f4a8e13cf356acf919b9fa20.tar.bz2 |
Make normalize_addresses and normalize_symbolics work on THIS, instead
of returning by value.
From-SVN: r278196
Diffstat (limited to 'gcc/value-range.h')
-rw-r--r-- | gcc/value-range.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/value-range.h b/gcc/value-range.h index 8a88e9a..23b05b4 100644 --- a/gcc/value-range.h +++ b/gcc/value-range.h @@ -83,8 +83,8 @@ public: void dump () const; static bool supports_type_p (tree); - value_range normalize_symbolics () const; - value_range normalize_addresses () const; + void normalize_symbolics (); + void normalize_addresses (); static const unsigned int m_max_pairs = 2; bool contains_p (tree) const; |