mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-21 15:50:50 +08:00
graphite-poly.c (new_scop): Remove init of SCOP_DEP_GRAPH.
2009-10-09 Sebastian Pop <sebastian.pop@amd.com> * graphite-poly.c (new_scop): Remove init of SCOP_DEP_GRAPH. * graphite-poly.h (struct scop): Remove dep_graph field. (SCOP_DEP_GRAPH): Removed. From-SVN: r154567
This commit is contained in:
parent
75b63a9191
commit
9d0778350b
@ -1,3 +1,9 @@
|
||||
2009-10-09 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* graphite-poly.c (new_scop): Remove init of SCOP_DEP_GRAPH.
|
||||
* graphite-poly.h (struct scop): Remove dep_graph field.
|
||||
(SCOP_DEP_GRAPH): Removed.
|
||||
|
||||
2009-10-09 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* graphite-poly.h (copy_lst): Do full copy of LST.
|
||||
|
@ -450,7 +450,6 @@ new_scop (void *region)
|
||||
{
|
||||
scop_p scop = XNEW (struct scop);
|
||||
|
||||
SCOP_DEP_GRAPH (scop) = NULL;
|
||||
SCOP_CONTEXT (scop) = NULL;
|
||||
scop_set_region (scop, region);
|
||||
SCOP_BBS (scop) = VEC_alloc (poly_bb_p, heap, 3);
|
||||
|
@ -742,9 +742,6 @@ struct scop
|
||||
/* Original and transformed schedules. */
|
||||
lst_p original_schedule, transformed_schedule;
|
||||
|
||||
/* Data dependence graph for this SCoP. */
|
||||
struct graph *dep_graph;
|
||||
|
||||
/* The context describes known restrictions concerning the parameters
|
||||
and relations in between the parameters.
|
||||
|
||||
@ -767,7 +764,6 @@ struct scop
|
||||
|
||||
#define SCOP_BBS(S) (S->bbs)
|
||||
#define SCOP_REGION(S) ((sese) S->region)
|
||||
#define SCOP_DEP_GRAPH(S) (S->dep_graph)
|
||||
#define SCOP_CONTEXT(S) (S->context)
|
||||
#define SCOP_ORIGINAL_PDDRS(S) (S->original_pddrs)
|
||||
#define SCOP_ORIGINAL_SCHEDULE(S) (S->original_schedule)
|
||||
|
Loading…
x
Reference in New Issue
Block a user