diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2009-11-25 04:57:17 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2009-11-25 04:57:17 +0000 |
commit | 9d0778350be2a1fbb2cded2f4e7a8586c80d4780 (patch) | |
tree | 6a61cf96f6c922c9d6f7573cf3ffa8fd923c9dcc /gcc/graphite-poly.h | |
parent | 75b63a9191017a605ff048e509709750566dbbad (diff) | |
download | gcc-9d0778350be2a1fbb2cded2f4e7a8586c80d4780.tar.gz |
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
Diffstat (limited to 'gcc/graphite-poly.h')
-rw-r--r-- | gcc/graphite-poly.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/graphite-poly.h b/gcc/graphite-poly.h index 6ae330ccdcd..ab6dbbb0ae1 100644 --- a/gcc/graphite-poly.h +++ b/gcc/graphite-poly.h @@ -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) |