From 91d7fe01563d5ab83e868bf2582ec71118ae3329 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 27 Feb 2015 18:09:42 +0100 Subject: [PATCH] c2pdg.cc: extract_node: rename "dim" variable to "space" Signed-off-by: Sven Verdoolaege --- c2pdg.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/c2pdg.cc b/c2pdg.cc index 67660b5..1187115 100644 --- a/c2pdg.cc +++ b/c2pdg.cc @@ -429,14 +429,14 @@ static pdg::node *extract_node(pdg::PDG *pdg, struct pet_scop *scop, int nr; int n_out; isl_val *v; - isl_space *dim; + isl_space *space; isl_set *dom; isl_map *trans, *trans_dom; - dim = isl_set_get_space(stmt->domain); - if (isl_space_is_wrapping(dim)) - dim = isl_space_domain(isl_space_unwrap(dim)); - trans = isl_map_universe(isl_space_map_from_set(dim)); + space = isl_set_get_space(stmt->domain); + if (isl_space_is_wrapping(space)) + space = isl_space_domain(isl_space_unwrap(space)); + trans = isl_map_universe(isl_space_map_from_set(space)); n_out = isl_map_dim(stmt->schedule, isl_dim_out); for (int i = 0, j = 0; i < n_out; ++i) { -- 2.11.4.GIT