From: Sven Verdoolaege Date: Fri, 23 Aug 2013 11:51:51 +0000 (+0200) Subject: scop.c: scop_collect_accesses: rename "dim" variable to "space" X-Git-Tag: pet-0.05~260 X-Git-Url: https://repo.or.cz/w/pet.git/commitdiff_plain/6b1ac25481ee3e66db53031b0112997a58416845 scop.c: scop_collect_accesses: rename "dim" variable to "space" Signed-off-by: Sven Verdoolaege --- diff --git a/scop.c b/scop.c index 60d1bc4..bae8498 100644 --- a/scop.c +++ b/scop.c @@ -3500,9 +3500,9 @@ static __isl_give isl_union_map *scop_collect_accesses(struct pet_scop *scop, for (i = 0; i < scop->n_stmt; ++i) { isl_union_map *accesses_i; - isl_space *dim = isl_set_get_space(scop->context); + isl_space *space = isl_set_get_space(scop->context); accesses_i = stmt_collect_accesses(scop->stmts[i], - read, write, must, tag, dim); + read, write, must, tag, space); accesses = isl_union_map_union(accesses, accesses_i); }