diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2010-03-08 17:48:42 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-03-08 17:48:42 +0000 |
commit | 733ff09d8391090e751823106e2d4d4c1bd4e67a (patch) | |
tree | a21ea1ac1520d27d079d17428f39af76835217a8 | |
parent | 1feb8238582fa4ffe90e44934a9105cb3855e551 (diff) | |
download | gcc-733ff09d8391090e751823106e2d4d4c1bd4e67a.zip gcc-733ff09d8391090e751823106e2d4d4c1bd4e67a.tar.gz gcc-733ff09d8391090e751823106e2d4d4c1bd4e67a.tar.bz2 |
Add constraints on the type of parameters to the scop context.
2010-02-23 Sebastian Pop <sebastian.pop@amd.com>
* graphite-sese-to-poly.c (add_param_constraints): Enabled: remove
early return.
From-SVN: r157278
-rw-r--r-- | gcc/ChangeLog.graphite | 5 | ||||
-rw-r--r-- | gcc/graphite-sese-to-poly.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 1771284..a3dbd5f 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,8 @@ +2010-02-23 Sebastian Pop <sebastian.pop@amd.com> + + * graphite-sese-to-poly.c (add_param_constraints): Enabled: remove + early return. + 2010-02-22 Sebastian Pop <sebastian.pop@amd.com> PR middle-end/43083 diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c index d4889b0..3ee431f 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; |