From 7d1ceb93203812df277b0c12ee0248512cb8e992 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Sun, 29 Jun 2014 17:51:01 +0000 Subject: [PATCH] Add missing HAVE_cloog guards * graphite-isl-ast-to-gimple.c: Add missing guards. From-SVN: r212125 --- gcc/ChangeLog | 4 ++++ gcc/graphite-isl-ast-to-gimple.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7c34af8b3d5..22b99b5d5d8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-06-29 Tobias Grosser + + * graphite-isl-ast-to-gimple.c: Add missing guards. + 2014-06-29 Roman Gareev * Makefile.in: diff --git a/gcc/graphite-isl-ast-to-gimple.c b/gcc/graphite-isl-ast-to-gimple.c index 6437474741e..8ba7b759ad4 100644 --- a/gcc/graphite-isl-ast-to-gimple.c +++ b/gcc/graphite-isl-ast-to-gimple.c @@ -20,10 +20,12 @@ along with GCC; see the file COPYING3. If not see #include "config.h" +#ifdef HAVE_cloog #include #include #include #include +#endif #include "system.h" #include "coretypes.h" @@ -41,6 +43,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-data-ref.h" #include "sese.h" +#ifdef HAVE_cloog #include "graphite-poly.h" #include "graphite-isl-ast-to-gimple.h" @@ -131,3 +134,4 @@ graphite_regenerate_ast_isl (scop_p scop) timevar_pop (TV_GRAPHITE_CODE_GEN); return !graphite_regenerate_error; } +#endif