summaryrefslogtreecommitdiff
path: root/isl_coalesce.c
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2009-06-07 10:42:28 +0200
committerSven Verdoolaege <skimo@kotnet.org>2009-06-07 10:42:28 +0200
commite29d9e44327042c59d516939a1a0462262368282 (patch)
tree33f66e7f301115ef180b8feb16a6219e1fa9a957 /isl_coalesce.c
parent23b40efbbbfced149584994d03c85dabbc20a258 (diff)
downloadisl-e29d9e44327042c59d516939a1a0462262368282.tar.gz
isl-e29d9e44327042c59d516939a1a0462262368282.tar.bz2
isl-e29d9e44327042c59d516939a1a0462262368282.zip
isl_map_coalesce: remove extra divs introduced by isl_map_align_divs
Diffstat (limited to 'isl_coalesce.c')
-rw-r--r--isl_coalesce.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/isl_coalesce.c b/isl_coalesce.c
index 3bb18b83..aa74484d 100644
--- a/isl_coalesce.c
+++ b/isl_coalesce.c
@@ -590,6 +590,7 @@ struct isl_map *isl_map_coalesce(struct isl_map *map)
for (i = 0; i < map->n; ++i) {
map->p[i] = isl_basic_map_update_from_tab(map->p[i],
tabs[i]);
+ map->p[i] = isl_basic_map_finalize(map->p[i]);
if (!map->p[i])
goto error;
ISL_F_SET(map->p[i], ISL_BASIC_MAP_NO_IMPLICIT);