From 4a5e9d0089cc59523a3830b35be5e9849e634130 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Sun, 17 May 2020 14:55:51 +0200 Subject: 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. --- gcc/vr-values.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/vr-values.h') 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. -- cgit v1.1