aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2017-08-03 07:42:36 +0000
committerPrathamesh Kulkarni <prathamesh3492@gcc.gnu.org>2017-08-03 07:42:36 +0000
commit96715b4baf054c82b50bfd08f1d4711f493773c3 (patch)
treea809d5beffd59293afc72f9e2efafd8bee3aac37 /gcc
parent673aef33bebcc654ac1ccd0135c91cc4285baeae (diff)
downloadgcc-96715b4baf054c82b50bfd08f1d4711f493773c3.zip
gcc-96715b4baf054c82b50bfd08f1d4711f493773c3.tar.gz
gcc-96715b4baf054c82b50bfd08f1d4711f493773c3.tar.bz2
tree-vrp.h: Add include guard.
2017-08-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> * tree-vrp.h: Add include guard. From-SVN: r250846
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-vrp.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3ac9b89..16b0304 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2017-08-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
+
+ * tree-vrp.h: Add include guard.
+
2017-08-02 Uros Bizjak <ubizjak@gmail.com>
PR target/81644
diff --git a/gcc/tree-vrp.h b/gcc/tree-vrp.h
index ef2c68a..f84403a 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
<http://www.gnu.org/licenses/>. */
+#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 */