diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/graphite-optimize-isl.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 96d4cf2..7a61eb6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-07-09 Richard Guenther <rguenther@suse.de> + + PR bootstrap/53898 + * graphite-optimize-isl.c: Make sure CU is not empty. + 2012-07-09 Steven Bosscher <steven@gcc.gnu.org> * gensupport.c (init_rtx_reader_args_cb): Start counting code diff --git a/gcc/graphite-optimize-isl.c b/gcc/graphite-optimize-isl.c index 45c3306..59e6057 100644 --- a/gcc/graphite-optimize-isl.c +++ b/gcc/graphite-optimize-isl.c @@ -28,6 +28,7 @@ along with GCC; see the file COPYING3. If not see #include <isl/band.h> #include <isl/aff.h> #include <isl/options.h> +#endif #include "system.h" #include "coretypes.h" @@ -39,6 +40,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-scalar-evolution.h" #include "sese.h" +#ifdef HAVE_cloog #include "graphite-poly.h" static isl_union_set * |