diff options
author | Li Feng <nemokingdom@gmail.com> | 2009-11-25 04:51:14 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2009-11-25 04:51:14 +0000 |
commit | 888beba187a207a0e3d02d662010b23cb09ca005 (patch) | |
tree | 33c9dac969bd0fb5cb1750885cf31adc53be84ae | |
parent | cd43e5d73391016c43b01a2b6ea68c254a1d68de (diff) | |
download | gcc-888beba187a207a0e3d02d662010b23cb09ca005.zip gcc-888beba187a207a0e3d02d662010b23cb09ca005.tar.gz gcc-888beba187a207a0e3d02d662010b23cb09ca005.tar.bz2 |
graphite-sese-to-poly.c (build_scop_drs): Disable writing to file the alias graph of data references.
2009-09-26 Li Feng <nemokingdom@gmail.com>
* graphite-sese-to-poly.c (build_scop_drs): Disable writing to file
the alias graph of data references.
From-SVN: r154554
-rw-r--r-- | gcc/ChangeLog.graphite | 5 | ||||
-rw-r--r-- | gcc/graphite-sese-to-poly.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 419f882..52fd90b 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,8 @@ +2009-09-26 Li Feng <nemokingdom@gmail.com> + + * graphite-sese-to-poly.c (build_scop_drs): Disable writing to file + the alias graph of data references. + 2009-09-25 Li Feng <nemokingdom@gmail.com> * graphite-sese-to-poly.c (write_alias_graph_to_ascii_dimacs): New. diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c index 4dc738d..babb0b6 100644 --- a/gcc/graphite-sese-to-poly.c +++ b/gcc/graphite-sese-to-poly.c @@ -1708,7 +1708,7 @@ build_poly_dr (data_reference_p dr, poly_bb_p pbb) dr, DR_NUM_DIMENSIONS (dr)); } -/* Write to FILE the alias graph of data references DRS. */ +/* Write to FILE the alias graph of data references with DIMACS format. */ static inline bool write_alias_graph_to_ascii_dimacs (FILE *file, char *comment, |