From b7e72cd78ba759d6174c2159acf8f6f4115267ad Mon Sep 17 00:00:00 2001 From: prathamesh3492 Date: Thu, 3 Aug 2017 07:42:36 +0000 Subject: [PATCH] 2017-08-03 Prathamesh Kulkarni * tree-vrp.h: Add include guard. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250846 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/tree-vrp.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ac9b897ce40..16b03043c7a1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2017-08-03 Prathamesh Kulkarni + + * tree-vrp.h: Add include guard. + 2017-08-02 Uros Bizjak PR target/81644 diff --git a/gcc/tree-vrp.h b/gcc/tree-vrp.h index ef2c68a752be..f84403a0f833 100644 --- a/gcc/tree-vrp.h +++ b/gcc/tree-vrp.h @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ +#ifndef GCC_TREE_VRP_H +#define GCC_TREE_VRP_H + /* Type of value ranges. See value_range_d In tree-vrp.c for a description of these types. */ enum value_range_type { VR_UNDEFINED, VR_RANGE, @@ -57,3 +60,4 @@ extern void extract_range_from_unary_expr (value_range *vr, value_range *vr0_, tree op0_type); +#endif /* GCC_TREE_VRP_H */ -- 2.47.2