From: Sven Verdoolaege Date: Tue, 17 May 2011 13:29:16 +0000 (+0200) Subject: isl_basic_map_from_local_space: don't finalize result X-Git-Tag: isl-0.07~183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27f606f13e8f199e1f7a087db0aeade4635cc94c;p=platform%2Fupstream%2Fisl.git isl_basic_map_from_local_space: don't finalize result This function is only called internally during the construction of isl_constraints and isl_divs and we don't want to remove redundant existentially quantified variables in these cases. Signed-off-by: Sven Verdoolaege --- diff --git a/isl_map.c b/isl_map.c index 128dce9..0668037 100644 --- a/isl_map.c +++ b/isl_map.c @@ -306,7 +306,6 @@ __isl_give isl_basic_map *isl_basic_map_from_local_space( } isl_local_space_free(ls); - bmap = isl_basic_map_finalize(bmap); return bmap; error: isl_local_space_free(ls);