aboutsummaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2017-02-13 08:54:02 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2017-02-13 08:54:02 +0000
commitf877b3adba2d9442752721d87c96f93beccd4c40 (patch)
tree4a2ee5ee6c3f117960b3f1a517bbaa4fb3747ef6 /gcc/toplev.c
parentc0d46793e8e05b2e68395512383f688eeea8dae2 (diff)
downloadgcc-f877b3adba2d9442752721d87c96f93beccd4c40.zip
gcc-f877b3adba2d9442752721d87c96f93beccd4c40.tar.gz
gcc-f877b3adba2d9442752721d87c96f93beccd4c40.tar.bz2
isl.m4: Remove support for ISL 0.14.
2017-02-13 Richard Biener <rguenther@suse.de> config/ * isl.m4: Remove support for ISL 0.14. * configure: Re-generate. gcc/ * configure.ac (HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS): Remove. * configure: Re-generate. * config.in: Likewise. * graphite-dependences.c: Simplify as if HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS was defined. * graphite-isl-ast-to-gimple.c: Likewise. * graphite-optimize-isl.c: Likewise. * graphite-poly.c: Likewise. * graphite-sese-to-poly.c: Likewise. * graphite.h: Likewise. * toplev.c: Include isl/version.h and use isl_version () for printing the ISL version. * doc/install.texi: Update ISL requirement. From-SVN: r245382
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 272f972..beb581a 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -92,6 +92,10 @@ along with GCC; see the file COPYING3. If not see
#include "selftest.h"
+#ifdef HAVE_isl
+#include <isl/version.h>
+#endif
+
static void general_init (const char *, bool);
static void do_compile ();
static void process_options (void);
@@ -678,10 +682,8 @@ print_version (FILE *file, const char *indent, bool show_global_state)
GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING,
#ifndef HAVE_isl
"none"
-#elif HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS
- "0.15"
#else
- "0.14 or 0.13"
+ isl_version ()
#endif
);
if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))