diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2015-07-13 15:41:54 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2015-07-13 15:41:54 +0000 |
commit | 9c358739d7507b19f6834486a4a42ce37c8a90cb (patch) | |
tree | 473c57c4046fe7fe7edfe90a2c0ec44696d55f32 /gcc/graphite-poly.c | |
parent | 73358db5d1c338040b4461bd84d2bafc11aaf9f0 (diff) | |
download | gcc-9c358739d7507b19f6834486a4a42ce37c8a90cb.zip gcc-9c358739d7507b19f6834486a4a42ce37c8a90cb.tar.gz gcc-9c358739d7507b19f6834486a4a42ce37c8a90cb.tar.bz2 |
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
Diffstat (limited to 'gcc/graphite-poly.c')
-rw-r--r-- | gcc/graphite-poly.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index d62b2af..bcd08d8 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -41,31 +41,20 @@ extern "C" { #if !defined(HAVE_ISL_SCHED_CONSTRAINTS_COMPUTE_SCHEDULE) && defined(__cplusplus) } #endif -#endif #include "system.h" #include "coretypes.h" -#include "diagnostic-core.h" -#include "alias.h" #include "backend.h" +#include "diagnostic-core.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 "gimple-pretty-print.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" #define OPENSCOP_MAX_STRING 256 @@ -1206,5 +1195,5 @@ reverse_loop_for_pbbs (scop_p scop, vec<poly_bb_p> pbbs, int depth) } -#endif +#endif /* HAVE_isl */ |