From: Sven Verdoolaege Date: Wed, 9 Mar 2011 20:04:56 +0000 (+0100) Subject: isl_map_deltas: don't copy flags from input X-Git-Tag: isl-0.06~23^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56a27cbce4e45fd2434e8be01e6b04d6bdf98876;p=platform%2Fupstream%2Fisl.git isl_map_deltas: don't copy flags from input The deltas sets of disjoint relations may not be disjoint and the entire result will not be normalized. Signed-off-by: Sven Verdoolaege --- diff --git a/isl_map.c b/isl_map.c index 6e71e0a..c3b521f 100644 --- a/isl_map.c +++ b/isl_map.c @@ -5444,7 +5444,7 @@ struct isl_set *isl_map_deltas(struct isl_map *map) goto error); dim = isl_map_get_dim(map); dim = isl_dim_domain(dim); - result = isl_set_alloc_dim(dim, map->n, map->flags); + result = isl_set_alloc_dim(dim, map->n, 0); if (!result) goto error; for (i = 0; i < map->n; ++i)