diff options
author | Sebastian Pop <s.pop@samsung.com> | 2015-12-17 17:52:17 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2015-12-17 17:52:17 +0000 |
commit | 616e2b4a9a5ca9f362f80c4a95a84353e342abe7 (patch) | |
tree | 5d8d145dee710714e5c621010c932916198d5353 /gcc/graphite.h | |
parent | 998f15f3b6a3ec8963e5c9864480d5c990099bc8 (diff) | |
download | gcc-616e2b4a9a5ca9f362f80c4a95a84353e342abe7.zip gcc-616e2b4a9a5ca9f362f80c4a95a84353e342abe7.tar.gz gcc-616e2b4a9a5ca9f362f80c4a95a84353e342abe7.tar.bz2 |
move all isl include files to graphite.h
* graphite-dependences.c: Move all isl include files to...
* graphite-isl-ast-to-gimple.c: Same.
* graphite-optimize-isl.c: Same.
* graphite-poly.c: Same.
* graphite-scop-detection.c: Same.
* graphite.c: Same.
* graphite.h: ... here.
From-SVN: r231783
Diffstat (limited to 'gcc/graphite.h')
-rw-r--r-- | gcc/graphite.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/gcc/graphite.h b/gcc/graphite.h index 929c399..2565da7 100644 --- a/gcc/graphite.h +++ b/gcc/graphite.h @@ -23,10 +23,26 @@ along with GCC; see the file COPYING3. If not see #define GCC_GRAPHITE_POLY_H #include "sese.h" +#include <isl/options.h> +#include <isl/ctx.h> +#include <isl/val_gmp.h> +#include <isl/set.h> +#include <isl/union_set.h> +#include <isl/map.h> +#include <isl/union_map.h> +#include <isl/aff.h> +#include <isl/constraint.h> +#include <isl/flow.h> +#include <isl/ilp.h> #include <isl/schedule.h> +#include <isl/ast_build.h> -#ifndef HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS - /* isl 0.14. */ +#ifdef HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS +/* isl 0.15 or later. */ +#include <isl/schedule_node.h> + +#else +/* isl 0.14 or 0.13. */ # define isl_stat int # define isl_stat_ok 0 #endif |