mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-28 06:14:10 +08:00
graphite.c (graphite_trans_scop_block): Do not block single nested loops.
2009-01-17 Sebastian Pop <sebastian.pop@amd.com> Tobias Grosser <tobi.grosser@amd.com> * graphite.c (graphite_trans_scop_block): Do not block single nested loops. Co-Authored-By: Tobias Grosser <tobi.grosser@amd.com> From-SVN: r143468
This commit is contained in:
parent
f791417262
commit
8137e465bf
@ -1,3 +1,9 @@
|
||||
2009-01-17 Sebastian Pop <sebastian.pop@amd.com>
|
||||
Tobias Grosser <tobi.grosser@amd.com>
|
||||
|
||||
* graphite.c (graphite_trans_scop_block): Do not block single
|
||||
nested loops.
|
||||
|
||||
2009-01-16 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* ebitmap.h (ebitmap_iter_init): Initialize all fields.
|
||||
|
@ -5948,7 +5948,7 @@ graphite_trans_scop_block (scop_p scop)
|
||||
j++;
|
||||
|
||||
/* Found perfect loop nest. */
|
||||
if (last_nb_loops - j > 0)
|
||||
if (last_nb_loops - j >= 2)
|
||||
transform_done |= graphite_trans_loop_block (bbs, last_nb_loops - j);
|
||||
VEC_free (graphite_bb_p, heap, bbs);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user