From 9d835a50b5ca96c7fd945b7c37869bcc17652938 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 20 Jun 2015 12:42:17 +0200 Subject: [PATCH] isl_map_simplify.c: uset_gist_full: drop redundant isl_basic_set_simplify call There should be no need to simplify the constraints at this stage. It is unlikely that any constraints can be further simplified at this point, since uset_gist_full only removes constraints. 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 255c50f5..70979756 100644 --- a/isl_map_simplify.c +++ b/isl_map_simplify.c @@ -2182,7 +2182,6 @@ static __isl_give isl_basic_set *uset_gist_full(__isl_take isl_basic_set *bset, isl_tab_free(tab); done: - bset = isl_basic_set_simplify(bset); bset = isl_basic_set_finalize(bset); isl_basic_set_free(context); return bset; -- 2.11.4.GIT