From edd0af6609b1ae31c728f41dae1105239db6eb73 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 9 Jun 2017 17:42:11 +0200 Subject: [PATCH] isl_aff.c: pw_aff_gte_set: rename "dim" variable to "space" Signed-off-by: Sven Verdoolaege --- isl_aff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/isl_aff.c b/isl_aff.c index 8cbc7b27..87ba4e62 100644 --- a/isl_aff.c +++ b/isl_aff.c @@ -2900,9 +2900,9 @@ static __isl_give isl_set *pw_aff_gte_set(__isl_take isl_pw_aff *pwaff1, pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_neg(pwaff2)); if (strict) { - isl_space *dim = isl_set_get_space(set1); + isl_space *space = isl_set_get_space(set1); isl_aff *aff; - aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim)); + aff = isl_aff_zero_on_domain(isl_local_space_from_space(space)); aff = isl_aff_add_constant_si(aff, -1); pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_alloc(set1, aff)); } else -- 2.11.4.GIT