Add missing HAVE_cloog guards

* graphite-isl-ast-to-gimple.c: Add missing guards.

From-SVN: r212125
This commit is contained in:
Tobias Grosser 2014-06-29 17:51:01 +00:00 committed by Tobias Grosser
parent f6cc31036a
commit 7d1ceb9320
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2014-06-29 Tobias Grosser <tobias@grosser.es>
* graphite-isl-ast-to-gimple.c: Add missing guards.
2014-06-29 Roman Gareev <gareevroman@gmail.com>
* Makefile.in:

View file

@ -20,10 +20,12 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#ifdef HAVE_cloog
#include <isl/set.h>
#include <isl/map.h>
#include <isl/union_map.h>
#include <isl/ast_build.h>
#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