diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2010-12-16 22:54:17 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-12-16 22:54:17 +0000 |
commit | a30e53454663b6b8fab469d249341c514a6395f6 (patch) | |
tree | a641dbfe3a54dffdf98a22c0dcc0ee96689e0352 /gcc/ChangeLog | |
parent | 114dae43305796626be7257e51fd53c7e5085f44 (diff) | |
download | gcc-a30e53454663b6b8fab469d249341c514a6395f6.zip gcc-a30e53454663b6b8fab469d249341c514a6395f6.tar.gz gcc-a30e53454663b6b8fab469d249341c514a6395f6.tar.bz2 |
Fix PR46924: Do not detect reductions outside the current SESE region.
2010-12-16 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/46924
* graphite-sese-to-poly.c (detect_commutative_reduction): Do not
detect reductions outside the current SESE region.
* sese.h (stmt_in_sese_p): New.
(defined_in_sese_p): Call stmt_in_sese_p.
* gcc.dg/graphite/pr46924.c: New.
From-SVN: r167962
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9083edc..cde0107 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2010-12-16 Sebastian Pop <sebastian.pop@amd.com> + + PR tree-optimization/46924 + * graphite-sese-to-poly.c (detect_commutative_reduction): Do not + detect reductions outside the current SESE region. + * sese.h (stmt_in_sese_p): New. + (defined_in_sese_p): Call stmt_in_sese_p. + 2010-12-16 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/46966 |