tree-parloops.c (separate_decls_in_region): Change the condition checking if there are reductions in the loop.

* tree-parloops.c (separate_decls_in_region): Change the condition 
	checking if there are reductions in the loop.

From-SVN: r151373
This commit is contained in:
Razya Ladelsky 2009-09-03 09:10:36 +00:00 committed by Razya Ladelsky
parent 785aa2a706
commit e7df16a549
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-09-03 Razya Ladelsky <razya@il.ibm.com>
* tree-parloops.c (separate_decls_in_region): Change the condition
checking if there are reductions in the loop.
2009-09-03 Razya Ladelsky <razya@il.ibm.com>
PR tree-optimization/38275

View File

@ -1135,7 +1135,7 @@ separate_decls_in_region (edge entry, edge exit, htab_t reduction_list,
VEC_free (basic_block, heap, body);
if (htab_elements (name_copies) == 0 && reduction_list == 0)
if (htab_elements (name_copies) == 0 && htab_elements (reduction_list)==0)
{
/* It may happen that there is nothing to copy (if there are only
loop carried and external variables in the loop). */