tree-vect-slp.c (vect_supported_load_permutation_p): Avoid redef of outer loop index variable.

2014-02-03  Teresa Johnson  <tejohnson@google.com>

	* tree-vect-slp.c (vect_supported_load_permutation_p): Avoid
	redef of outer loop index variable.

From-SVN: r207437
This commit is contained in:
Teresa Johnson 2014-02-03 19:12:58 +00:00 committed by Teresa Johnson
parent 5d77fb196b
commit bddc974e71
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-02-03 Teresa Johnson <tejohnson@google.com>
* tree-vect-slp.c (vect_supported_load_permutation_p): Avoid
redef of outer loop index variable.
2014-02-03 Marc Glisse <marc.glisse@inria.fr>
PR c++/53017

View File

@ -1103,8 +1103,8 @@ vect_supported_load_permutation_p (slp_instance slp_instn)
FOR_EACH_VEC_ELT (node->load_permutation, j, next)
dump_printf (MSG_NOTE, "%d ", next);
else
for (i = 0; i < group_size; ++i)
dump_printf (MSG_NOTE, "%d ", i);
for (k = 0; k < group_size; ++k)
dump_printf (MSG_NOTE, "%d ", k);
dump_printf (MSG_NOTE, "\n");
}