From 56a27cbce4e45fd2434e8be01e6b04d6bdf98876 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 9 Mar 2011 21:04:56 +0100 Subject: [PATCH] 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 --- isl_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_map.c b/isl_map.c index 6e71e0a4..c3b521f2 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) -- 2.11.4.GIT