From 9c358739d7507b19f6834486a4a42ce37c8a90cb Mon Sep 17 00:00:00 2001 From: Andrew MacLeod Date: Mon, 13 Jul 2015 15:41:54 +0000 Subject: omega.h: Don't include config.h... * omega.h: Don't include config.h, don't include params.h again if omega.h has already been included. * graphite-poly.h: Include sese.h. * graphite.c: Don't include sese.h, remove needless includes and minimize includes outside #ifdef HAVE_isl block. * graphite-blocking.c: Don't include sese.h, remove needless includes, and wrap entire file in #ifdef 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. From-SVN: r225741 --- gcc/graphite-interchange.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'gcc/graphite-interchange.c') diff --git a/gcc/graphite-interchange.c b/gcc/graphite-interchange.c index 0f0580b..aee51a8 100644 --- a/gcc/graphite-interchange.c +++ b/gcc/graphite-interchange.c @@ -42,31 +42,22 @@ extern "C" { #if !defined(HAVE_ISL_SCHED_CONSTRAINTS_COMPUTE_SCHEDULE) && defined(__cplusplus) } #endif -#endif #include "system.h" #include "coretypes.h" -#include "alias.h" #include "backend.h" #include "cfghooks.h" #include "tree.h" #include "gimple.h" -#include "hard-reg-set.h" -#include "options.h" #include "fold-const.h" -#include "internal-fn.h" #include "gimple-iterator.h" #include "tree-ssa-loop.h" #include "dumpfile.h" #include "cfgloop.h" -#include "tree-chrec.h" #include "tree-data-ref.h" -#include "tree-scalar-evolution.h" -#include "sese.h" - -#ifdef HAVE_isl #include "graphite-poly.h" + /* XXX isl rewrite following comment */ /* Builds a linear expression, of dimension DIM, representing PDR's memory access: @@ -657,5 +648,5 @@ scop_do_interchange (scop_p scop) } -#endif +#endif /* HAVE_isl */ -- cgit v1.1