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-dependences.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-dependences.c')
-rw-r--r-- | gcc/graphite-dependences.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gcc/graphite-dependences.c b/gcc/graphite-dependences.c index 79b69a7..50fe73e 100644 --- a/gcc/graphite-dependences.c +++ b/gcc/graphite-dependences.c @@ -30,31 +30,22 @@ along with GCC; see the file COPYING3. If not see #include <isl/union_map.h> #include <isl/flow.h> #include <isl/constraint.h> -#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 "tree-pass.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" + isl_union_map * scop_get_dependences (scop_p scop) { @@ -632,4 +623,4 @@ graphite_legal_transform (scop_p scop) return res; } -#endif +#endif /* HAVE_isl */ |