graphite-poly.h (enum POLY_DR_TYPE): Renamed poly_dr_type.

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.

From-SVN: r151188
This commit is contained in:
Sebastian Pop 2009-08-28 20:37:06 +00:00 committed by Sebastian Pop
parent 3ff4c25d7f
commit e6dec0fbff
5 changed files with 20 additions and 5 deletions

View File

@ -1,3 +1,11 @@
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.
2009-08-28 Cary Coutant <ccoutant@google.com>
PR debug/41063

View File

@ -1,3 +1,10 @@
2009-08-25 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.
2009-08-25 Konrad Trifunovic <konrad.trifunovic@gmail.com>
Sebastian Pop <sebastian.pop@amd.com>

View File

@ -777,7 +777,7 @@ dot_deps (scop_p scop)
{
/* When debugging, enable the following code. This cannot be used
in production compilers because it calls "system". */
#if 1
#if 0
int x;
FILE *stream = fopen ("/tmp/scopdeps.dot", "w");
gcc_assert (stream);

View File

@ -270,7 +270,7 @@ apply_poly_transforms (scop_p scop)
void
new_poly_dr (poly_bb_p pbb,
ppl_Pointset_Powerset_C_Polyhedron_t accesses,
enum POLY_DR_TYPE type, void *cdr, int nb_subscripts)
enum poly_dr_type type, void *cdr, int nb_subscripts)
{
poly_dr_p pdr = XNEW (struct poly_dr);
static int id = 0;

View File

@ -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);