diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2020-05-17 14:55:51 +0200 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2020-06-01 09:48:43 +0200 |
commit | 4a5e9d0089cc59523a3830b35be5e9849e634130 (patch) | |
tree | 39174921d2fbbb1198c5479d0a89d24d90661c46 /gcc/vr-values.h | |
parent | 32633ec815b4d741a9a4b1b75de235844f6d691c (diff) | |
download | gcc-4a5e9d0089cc59523a3830b35be5e9849e634130.zip gcc-4a5e9d0089cc59523a3830b35be5e9849e634130.tar.gz gcc-4a5e9d0089cc59523a3830b35be5e9849e634130.tar.bz2 |
Move value_range_equiv code to its own file.
gcc/
* Makefile.in (OBJS): Add value-range-equiv.o.
* tree-vrp.c (*value_range_equiv*): Move to...
* value-range-equiv.cc: ...here.
* tree-vrp.h (class value_range_equiv): Move to...
* value-range-equiv.h: ...here.
* vr-values.h: Include value-range-equiv.h.
Diffstat (limited to 'gcc/vr-values.h')
-rw-r--r-- | gcc/vr-values.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/vr-values.h b/gcc/vr-values.h index b4ab4e6..cfe4f64 100644 --- a/gcc/vr-values.h +++ b/gcc/vr-values.h @@ -20,6 +20,8 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_VR_VALUES_H #define GCC_VR_VALUES_H +#include "value-range-equiv.h" + /* The VR_VALUES class holds the current view of range information for all the SSA_NAMEs in the IL. |