Commit bddc974e by Teresa Johnson Committed by Teresa Johnson

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
parent 5d77fb19
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
......
......@@ -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");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment