From: Sebastian Pop Date: Mon, 8 Mar 2010 17:48:42 +0000 (+0000) Subject: Add constraints on the type of parameters to the scop context. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=733ff09d8391090e751823106e2d4d4c1bd4e67a;p=gcc.git Add constraints on the type of parameters to the scop context. 2010-02-23 Sebastian Pop * graphite-sese-to-poly.c (add_param_constraints): Enabled: remove early return. From-SVN: r157278 --- diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 17712840a10..a3dbd5fac05 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,8 @@ +2010-02-23 Sebastian Pop + + * graphite-sese-to-poly.c (add_param_constraints): Enabled: remove + early return. + 2010-02-22 Sebastian Pop PR middle-end/43083 diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c index d4889b044d6..3ee431fda6e 100644 --- a/gcc/graphite-sese-to-poly.c +++ b/gcc/graphite-sese-to-poly.c @@ -1501,9 +1501,6 @@ add_param_constraints (scop_p scop, ppl_Polyhedron_t context, graphite_dim_t p) tree type = TREE_TYPE (parameter); tree lb, ub; - /* Disabled until we fix CPU2006. */ - return; - if (!INTEGRAL_TYPE_P (type)) return;