diff options
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/gcc/system.h b/gcc/system.h index 544f7ba..5f740e3 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -736,6 +736,27 @@ extern int vsnprintf (char *, size_t, const char *, va_list); #endif #endif +#ifdef INCLUDE_ISL +#ifdef HAVE_isl +#include <isl/options.h> +#include <isl/ctx.h> +#include <isl/val.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> +#include <isl/schedule_node.h> +#include <isl/id.h> +#include <isl/space.h> +#endif +#endif + /* Redefine abort to report an internal error w/o coredump, and reporting the location of the error in the source file. */ extern void fancy_abort (const char *, int, const char *) @@ -866,12 +887,10 @@ extern void fancy_abort (const char *, int, const char *) etc don't spuriously fail. */ #ifdef IN_GCC -#ifndef USES_ISL #undef calloc #undef strdup #undef strndup #pragma GCC poison calloc strdup strndup -#endif #if !defined(FLEX_SCANNER) && !defined(YYBISON) #undef malloc |