diff options
author | Richard Guenther <rguenther@suse.de> | 2009-10-26 11:16:10 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2009-10-26 11:16:10 +0000 |
commit | b77a0698b4fbd971ee15b79afc6d20edce491dab (patch) | |
tree | ec5a5662a56669376eeabd9b160b8c6df619a207 | |
parent | 22e5d3dc26c08b9aad797f22ee06ff74393d30d5 (diff) | |
download | gcc-b77a0698b4fbd971ee15b79afc6d20edce491dab.zip gcc-b77a0698b4fbd971ee15b79afc6d20edce491dab.tar.gz gcc-b77a0698b4fbd971ee15b79afc6d20edce491dab.tar.bz2 |
graphite-sese-to-poly.c (check_poly_representation): Fix compile without checking.
2009-10-26 Richard Guenther <rguenther@suse.de>
* graphite-sese-to-poly.c (check_poly_representation): Fix
compile without checking.
From-SVN: r153549
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/graphite-sese-to-poly.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ce99eb..e7c10ad 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-10-26 Richard Guenther <rguenther@suse.de> + + * graphite-sese-to-poly.c (check_poly_representation): Fix + compile without checking. + 2009-10-26 Janus Weil <janus@gcc.gnu.org> PR fortran/41714 diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c index ccf539e..2eb50df 100644 --- a/gcc/graphite-sese-to-poly.c +++ b/gcc/graphite-sese-to-poly.c @@ -2084,7 +2084,7 @@ build_poly_scop (scop_p scop) /* Always return false. Exercise the scop_to_clast function. */ void -check_poly_representation (scop_p scop) +check_poly_representation (scop_p scop ATTRIBUTE_UNUSED) { #ifdef ENABLE_CHECKING cloog_prog_clast pc = scop_to_clast (scop); |