From 105853e974e7d9b9de7b603535434689e63022cc Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 14 Dec 2022 14:39:37 +0100 Subject: [PATCH] isl_multi_*_domain_intersect: drop redundant check The check is also performed by isl_multi_*_get_explicit_domain. Since the direct access to the explicit domain was removed in the previous commit, the check is no longer needed. Signed-off-by: Sven Verdoolaege --- isl_multi_intersect.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/isl_multi_intersect.c b/isl_multi_intersect.c index 1750dcbb..103aea5c 100644 --- a/isl_multi_intersect.c +++ b/isl_multi_intersect.c @@ -42,8 +42,6 @@ static __isl_give MULTI(BASE) *FN(MULTI(BASE),domain_intersect)( if (FN(FN(MULTI(BASE),align_params),DOMBASE)(&multi, &domain) < 0) goto error; - if (FN(MULTI(BASE),check_has_explicit_domain)(multi) < 0) - goto error; multi_dom = FN(MULTI(BASE),get_explicit_domain)(multi); is_params = FN(DOM,is_params)(multi_dom); if (is_params < 0) { -- 2.11.4.GIT