summaryrefslogtreecommitdiff
path: root/gcc/graphite-dependences.c
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@redhat.com>2015-07-13 15:41:54 +0000
committerAndrew Macleod <amacleod@gcc.gnu.org>2015-07-13 15:41:54 +0000
commit9c358739d7507b19f6834486a4a42ce37c8a90cb (patch)
tree473c57c4046fe7fe7edfe90a2c0ec44696d55f32 /gcc/graphite-dependences.c
parent73358db5d1c338040b4461bd84d2bafc11aaf9f0 (diff)
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.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/gcc/graphite-dependences.c b/gcc/graphite-dependences.c
index 79b69a79cb1..50fe73efd00 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 */