From eae1a5d419d30eca0905a78e45a8e3909983dd6a Mon Sep 17 00:00:00 2001 From: Roman Gareev Date: Mon, 18 Aug 2014 15:42:11 +0000 Subject: configure.ac: Eliminate ClooG installation dependency. * configure.ac: Eliminate ClooG installation dependency. * configure: Regenerate. * Makefile.tpl: Add definition of ISLLIBS and HOST_ISLLIBS. * Makefile.in: Regenerate. [config/] * cloog.m4: Remove the path to isllibs from clooglibs. * isl.m4: Add paths to islinc, isllibs. [gcc/] * Makefile.in: Add definition of ISLLIBS, HOST_ISLLIBS. * config.in: Add undef of HAVE_isl. * configure: Regenerate. * configure.ac: Add definition of HAVE_isl. * graphite-blocking.c: Add checking of HAVE_isl. * graphite-dependences.c: Likewise. * graphite-interchange.c: Likewise. * graphite-isl-ast-to-gimple.c: Likewise. * graphite-optimize-isl.c: Likewise. * graphite-poly.c: Likewise. * graphite-scop-detection.c: Likewise. * graphite-sese-to-poly.c: Likewise. * graphite.c: Likewise. * toplev.c: Replace the checking of HAVE_cloog with the checking of HAVE_isl. From-SVN: r214106 --- gcc/graphite-interchange.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gcc/graphite-interchange.c') diff --git a/gcc/graphite-interchange.c b/gcc/graphite-interchange.c index 45db539..8d691db 100644 --- a/gcc/graphite-interchange.c +++ b/gcc/graphite-interchange.c @@ -23,7 +23,7 @@ along with GCC; see the file COPYING3. If not see #include "config.h" -#ifdef HAVE_cloog +#ifdef HAVE_isl #include #include #include @@ -37,9 +37,11 @@ extern "C" { #if defined(__cplusplus) } #endif +#ifdef HAVE_cloog #include #include #endif +#endif #include "system.h" #include "coretypes.h" @@ -59,7 +61,7 @@ extern "C" { #include "tree-scalar-evolution.h" #include "sese.h" -#ifdef HAVE_cloog +#ifdef HAVE_isl #include "graphite-poly.h" /* XXX isl rewrite following comment */ -- cgit v1.1