From 46a3f39562c046b9d847ca845a9559033877e8c3 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 20 Jul 2013 18:08:15 +0200 Subject: [PATCH] scop.c: update_domain: rename variable "dim" to "space" Signed-off-by: Sven Verdoolaege --- scop.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scop.c b/scop.c index 265548c..0edfd90 100644 --- a/scop.c +++ b/scop.c @@ -671,20 +671,20 @@ int pet_expr_foreach_access_expr(struct pet_expr *expr, static struct pet_expr *update_domain(struct pet_expr *expr, void *user) { isl_map *update = user; - isl_space *dim; + isl_space *space; update = isl_map_copy(update); - dim = isl_map_get_space(expr->acc.access); - dim = isl_space_domain(dim); - if (!isl_space_is_wrapping(dim)) - isl_space_free(dim); + space = isl_map_get_space(expr->acc.access); + space = isl_space_domain(space); + if (!isl_space_is_wrapping(space)) + isl_space_free(space); else { isl_map *id; - dim = isl_space_unwrap(dim); - dim = isl_space_range(dim); - dim = isl_space_map_from_set(dim); - id = isl_map_identity(dim); + space = isl_space_unwrap(space); + space = isl_space_range(space); + space = isl_space_map_from_set(space); + id = isl_map_identity(space); update = isl_map_product(update, id); } -- 2.11.4.GIT