diff --git a/ChangeLog b/ChangeLog index aca4c57126386c5fb452bba95af405634f0250e7..fbaeadda9329e5581d4451c3f22d2f8c5172bbd1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-01-25 Sebastian Pop <sebastian.pop@amd.com> + + * configure: Regenerated. + * configure.ac: Check for version 0.11 (or later revision) of PPL. + 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de> * configure: Regenerated. diff --git a/configure b/configure index ca3d53461bb078ddcd50bbcbc45575c7b5df1513..257888b072a9762309583048e862d04272f5528a 100755 --- a/configure +++ b/configure @@ -5716,8 +5716,8 @@ fi if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $pplinc $gmpinc" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.10 (or later revision) of PPL" >&5 -$as_echo_n "checking for version 0.10 (or later revision) of PPL... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.11 (or later revision) of PPL" >&5 +$as_echo_n "checking for version 0.11 (or later revision) of PPL... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "ppl_c.h" @@ -5725,7 +5725,7 @@ int main () { - #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 + #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 choke me #endif diff --git a/configure.ac b/configure.ac index bbb82c338048b3d54a7b52d7382b7a89152ab208..a497efee03070d11084106f4b93f2f2957b7b5be 100644 --- a/configure.ac +++ b/configure.ac @@ -1668,9 +1668,9 @@ ENABLE_PPL_CHECK=yes) if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $pplinc $gmpinc" - AC_MSG_CHECKING([for version 0.10 (or later revision) of PPL]) + AC_MSG_CHECKING([for version 0.11 (or later revision) of PPL]) AC_TRY_COMPILE([#include "ppl_c.h"],[ - #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 + #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 choke me #endif ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); ppllibs= ; pplinc= ; with_ppl=no ]) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ff43b8ee0b592f28896cdfec53ea52b1c8d40ae2..5885aa7b35bad38e057c5170c0d88b39183ed3d4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-01-25 Sebastian Pop <sebastian.pop@amd.com> + + * doc/install.texi: Update the expected version number of PPL to 0.11. + * graphite-ppl.c (ppl_powerset_is_empty): Remove now dead code under + #if PPL_VERSION_MINOR < 11. + 2011-01-25 Sebastian Pop <sebastian.pop@amd.com> * graphite-dependences.c: Include graphite-cloog-util.h. diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 93c4c4ee38e93e1e68841baf04ae1ef63318f5aa..62b5999add25dba9e93e81e8d6482919a6d214b7 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,9 @@ +2011-01-15 Sebastian Pop <sebastian.pop@amd.com> + + * doc/install.texi: Update the expected version number of PPL to 0.11. + * graphite-ppl.c (ppl_powerset_is_empty): Remove now dead code under + #if PPL_VERSION_MINOR < 11. + 2011-01-15 Sebastian Pop <sebastian.pop@amd.com> * graphite-dependences.c (new_poly_ddr): Inlined into diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 7797fcbe02d89006b62fc4833c2d93e4a99a3277..e4511195415c0471780a215a1382e149d3a24ecf 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -332,7 +332,7 @@ and @option{--with-mpc-include}. Alternatively, if an MPC source distribution is found in a subdirectory of your GCC sources named @file{mpc}, it will be built together with GCC@. -@item Parma Polyhedra Library (PPL) version 0.10 +@item Parma Polyhedra Library (PPL) version 0.11 Necessary to build GCC with the Graphite loop optimizations. It can be downloaded from @uref{http://www.cs.unipr.it/ppl/Download/}. diff --git a/gcc/graphite-ppl.c b/gcc/graphite-ppl.c index d879d788738a4a5c65b47ee91abf25e99fd06b3e..1a083627ea60c363c77aa27cbfc00125d884b45f 100644 --- a/gcc/graphite-ppl.c +++ b/gcc/graphite-ppl.c @@ -525,15 +525,6 @@ bool ppl_powerset_is_empty (ppl_Pointset_Powerset_C_Polyhedron_t ps, int nb_params ATTRIBUTE_UNUSED) { -#if PPL_VERSION_MAJOR == 0 && PPL_VERSION_MINOR < 11 - /* On PPL 0.10, - ppl_Pointset_Powerset_C_Polyhedron_contains_integer_point (ps) - takes too long on some cases and so we call _is_empty instead. */ - return ppl_Pointset_Powerset_C_Polyhedron_is_empty (ps); - -#else - /* On PPL 0.11 or later, we can check for integer feasibility using - the PIP solver. */ ppl_PIP_Problem_t pip; ppl_dimension_type d; ppl_const_Constraint_System_t pcs; @@ -585,7 +576,6 @@ ppl_powerset_is_empty (ppl_Pointset_Powerset_C_Polyhedron_t ps, free (ds); return !has_integer_solutions; -#endif } #endif