diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2010-08-11 20:25:50 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-08-11 20:25:50 +0000 |
commit | 32e68db9b617a3de75d62132b07665eef6379c9a (patch) | |
tree | 13453108f6015e975352d7ede7920567f045ba59 /gcc/graphite-clast-to-gimple.c | |
parent | 8b164754dcb55a4bb64bbfd03c7a24cbf29ead57 (diff) | |
download | gcc-32e68db9b617a3de75d62132b07665eef6379c9a.zip gcc-32e68db9b617a3de75d62132b07665eef6379c9a.tar.gz gcc-32e68db9b617a3de75d62132b07665eef6379c9a.tar.bz2 |
Replace map with rename_map.
2010-06-24 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (build_iv_mapping): Rename map with
rename_map.
* sese.c (debug_rename_map): Same.
(get_rename): Same.
(set_rename): Same.
(rename_variables_in_stmt): Same.
(expand_scalar_variables_call): Same.
(expand_scalar_variables_ssa_name): Same.
(expand_scalar_variables_expr): Same.
(expand_scalar_variables_stmt): Same.
(expand_scalar_variables): Same.
(rename_variables): Same.
(graphite_copy_stmts_from_block): Same.
(copy_bb_and_scalar_dependences): Same.
From-SVN: r163128
Diffstat (limited to 'gcc/graphite-clast-to-gimple.c')
-rw-r--r-- | gcc/graphite-clast-to-gimple.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index a610bc5..7eb9165 100644 --- a/gcc/graphite-clast-to-gimple.c +++ b/gcc/graphite-clast-to-gimple.c @@ -819,11 +819,11 @@ graphite_create_new_loop (sese region, edge entry_edge, return loop; } -/* Inserts in MAP a tuple (OLD_NAME, NEW_NAME) for the induction +/* Inserts in RENAME_MAP a tuple (OLD_NAME, NEW_NAME) for the induction variables of the loops around GBB in SESE. */ static void -build_iv_mapping (htab_t map, sese region, +build_iv_mapping (htab_t rename_map, sese region, VEC (tree, heap) *newivs, htab_t newivs_index, struct clast_user_stmt *user_stmt, htab_t params_index) @@ -842,7 +842,7 @@ build_iv_mapping (htab_t map, sese region, tree old_name = pbb_to_depth_to_oldiv (pbb, index); tree e = clast_to_gcc_expression (type, expr, region, newivs, newivs_index, params_index); - set_rename (map, old_name, e); + set_rename (rename_map, old_name, e); } } |