From 53206f67671b2228286799f7d94c54814d1f14e2 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 10 Aug 2016 11:23:14 +0200 Subject: [PATCH] isl_map_simplify.c: isl_basic_map_eliminate_vars: drop redundant mark removal The function isl_basic_map_eliminate_vars removes the ISL_BASIC_MAP_NORMALIZED flag, but the only reason for removing this flag is the addition of one or more inequality constraints and isl_basic_map_alloc_inequality itself already clears the flag. Signed-off-by: Sven Verdoolaege --- isl_map_simplify.c | 1 - 1 file changed, 1 deletion(-) diff --git a/isl_map_simplify.c b/isl_map_simplify.c index e0dea214..eb997d5c 100644 --- a/isl_map_simplify.c +++ b/isl_map_simplify.c @@ -1618,7 +1618,6 @@ __isl_give isl_basic_map *isl_basic_map_eliminate_vars( break; } } - ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED); if (need_gauss) bmap = isl_basic_map_gauss(bmap, NULL); return bmap; -- 2.11.4.GIT