summaryrefslogtreecommitdiff
path: root/gcc/graphite-poly.h
diff options
context:
space:
mode:
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2009-08-28 20:37:06 +0000
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2009-08-28 20:37:06 +0000
commitc04f2da71c5976eef6ce9fca0296a8f9ac609bc5 (patch)
treeb94587eac32aae46a87a5d854eb9244d0a679d18 /gcc/graphite-poly.h
parent7fd2dcb409b1c0ae7f7f8f724e962f5725d32814 (diff)
downloadgcc-c04f2da71c5976eef6ce9fca0296a8f9ac609bc5.tar.gz
2009-08-28 Sebastian Pop <sebastian.pop@amd.com>
* graphite-poly.h (enum POLY_DR_TYPE): Renamed poly_dr_type. (struct poly_dr): Same. (new_poly_dr): Same. * graphite-poly.c (new_poly_dr): Same. * graphite-dependences.c (dot_deps): Disable call to system. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151188 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-poly.h')
-rw-r--r--gcc/graphite-poly.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/graphite-poly.h b/gcc/graphite-poly.h
index 081e1861bdd..394394b58b9 100644
--- a/gcc/graphite-poly.h
+++ b/gcc/graphite-poly.h
@@ -42,7 +42,7 @@ static inline graphite_dim_t scop_nb_params (scop_p);
/* A data reference can write or read some memory or we
just know it may write some memory. */
-enum POLY_DR_TYPE
+enum poly_dr_type
{
PDR_READ,
/* PDR_MAY_READs are represented using PDR_READS. This does not limit the
@@ -62,7 +62,7 @@ struct poly_dr
/* A pointer to the PBB that contains this data reference. */
poly_bb_p pbb;
- enum POLY_DR_TYPE type;
+ enum poly_dr_type type;
/* The access polyhedron contains the polyhedral space this data
reference will access.
@@ -144,7 +144,7 @@ struct poly_dr
#define PDR_NB_SUBSCRIPTS(PDR) (PDR->nb_subscripts)
void new_poly_dr (poly_bb_p, ppl_Pointset_Powerset_C_Polyhedron_t,
- enum POLY_DR_TYPE, void *, int);
+ enum poly_dr_type, void *, int);
void free_poly_dr (poly_dr_p);
void debug_pdr (poly_dr_p);
void print_pdr (FILE *, poly_dr_p);