diff options
Diffstat (limited to 'gcc/graphite-sese-to-poly.h')
-rw-r--r-- | gcc/graphite-sese-to-poly.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/graphite-sese-to-poly.h b/gcc/graphite-sese-to-poly.h index 9379c14c208..0737c49bd94 100644 --- a/gcc/graphite-sese-to-poly.h +++ b/gcc/graphite-sese-to-poly.h @@ -21,8 +21,12 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_GRAPHITE_SESE_TO_POLY_H #define GCC_GRAPHITE_SESE_TO_POLY_H -#define ALIAS_SET_INDEX 0 -#define BASE_OBJECT_SET_INDEX 1 +typedef struct base_alias_pair base_alias_pair; +struct base_alias_pair +{ + int base_obj_set; + int *alias_set; +}; bool build_poly_scop (scop_p); void check_poly_representation (scop_p); |