aboutsummaryrefslogtreecommitdiff
path: root/gcc/sese.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/sese.h')
-rw-r--r--gcc/sese.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/sese.h b/gcc/sese.h
index 52aa868..b025a4d 100644
--- a/gcc/sese.h
+++ b/gcc/sese.h
@@ -22,6 +22,8 @@ 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. */
typedef struct sese_s
@@ -32,6 +34,9 @@ typedef struct sese_s
/* Parameters used within the SCOP. */
vec<tree> params;
+ /* Parameters to be renamed. */
+ parameter_rename_map_t *parameter_rename_map;
+
/* Loops completely contained in the SCOP. */
bitmap loops;
vec<loop_p> loop_nest;