summaryrefslogtreecommitdiff
path: root/gcc/sese.h
diff options
context:
space:
mode:
authorAditya Kumar <aditya.k7@samsung.com>2015-11-04 20:59:18 +0000
committerSebastian Pop <spop@gcc.gnu.org>2015-11-04 20:59:18 +0000
commit24bc75034b5828506cb753309adcb6df618df158 (patch)
tree850eea85a1b48f59f6d6d684c118eb1533ccd8d9 /gcc/sese.h
parent1b38d3ecfe83db1237281b2f5074289895fd5cfd (diff)
remove parameter_rename_map
This map was used in the transition to the new scop detection: with the new scop detection, we do not need this map anymore. * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id): Remove use of parameter_rename_map. (copy_def): Remove. (copy_internal_parameters): Remove. (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters. * sese.c (new_sese_info): Do not initialize parameter_rename_map. (free_sese_info): Do not free parameter_rename_map. (set_rename): Do not use parameter_rename_map. (rename_uses): Update call to set_rename. (graphite_copy_stmts_from_block): Do not use parameter_rename_map. * sese.h (parameter_rename_map_t): Remove. (struct sese_info_t): Remove field parameter_rename_map. Co-Authored-By: Sebastian Pop <s.pop@samsung.com> From-SVN: r229783
Diffstat (limited to 'gcc/sese.h')
-rw-r--r--gcc/sese.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/sese.h b/gcc/sese.h
index 98ab4911e20..b3d48b9d421 100644
--- a/gcc/sese.h
+++ b/gcc/sese.h
@@ -22,8 +22,6 @@ along with GCC; see the file COPYING3. If not see
#ifndef GCC_SESE_H
#define GCC_SESE_H
-typedef hash_map<tree, tree> parameter_rename_map_t;
-
/* A Single Entry, Single Exit region is a part of the CFG delimited
by two edges. */
struct sese_l
@@ -61,9 +59,6 @@ typedef struct sese_info_t
/* Parameters used within the SCOP. */
vec<tree> params;
- /* Parameters to be renamed. */
- parameter_rename_map_t *parameter_rename_map;
-
/* Loops completely contained in this SESE. */
bitmap loops;
vec<loop_p> loop_nest;